tg/server.go
2024-03-29 16:30:48 +05:00

8 lines
138 B
Go

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