package meowlib
type Network interface {
Send(request []byte) ([]byte, error)
Start(callback *func() []InternalMessage)
Stop()
}