9 lines
139 B
Go
9 lines
139 B
Go
|
package tg
|
||
|
|
||
|
// Implementing the interface provides
|
||
|
// the way to define how to handle updates.
|
||
|
type Server interface {
|
||
|
Serve(*Context)
|
||
|
}
|
||
|
|