tg/server.go

9 lines
138 B
Go
Raw Permalink Normal View History

package tg
// Implementing the interface provides
// the way to define how to handle updates.
type Server interface {
2024-03-29 14:30:48 +03:00
Serve(Context)
}