meowlib/network.go

8 lines
133 B
Go
Raw Normal View History

2022-01-15 22:19:29 +01:00
package meowlib
type Network interface {
2022-03-01 10:37:11 +01:00
Send(request []byte) ([]byte, error)
Start(callback *func() []InternalMessage)
2022-01-15 22:19:29 +01:00
Stop()
}