mirror of
https://github.com/sigcn/pg.git
synced 2025-09-27 10:42:08 +08:00
13 lines
176 B
Go
13 lines
176 B
Go
package disco
|
|
|
|
type Controller interface {
|
|
Handle(b []byte)
|
|
Name() string
|
|
Type() uint8
|
|
}
|
|
|
|
type ControllerManager interface {
|
|
Register(Controller)
|
|
Unregister(Controller)
|
|
}
|