tg/server.go
2023-10-22 20:41:01 +03:00

8 lines
139 B
Go

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