package zciyon type CiyUDPServer interface { Listen(address string) error Watch(fn func(byt []byte)) Send(byt []byte) error Close() error }