tg/updater.go

10 lines
177 B
Go
Raw Permalink Normal View History

package tg
// Implementing the type provides
// way to update stuff on the client side.
// Things like panels, messages etc.
type Updater interface {
Update(Context) error
}