tg/server.go

9 lines
139 B
Go
Raw Normal View History

package tg
// Implementing the interface provides
// the way to define how to handle updates.
type Server interface {
Serve(*Context)
}