package core
import "git.noahlan.cn/northlan/nnet/packet"
type (
Processor interface {
Process(conn *Connection, packet packet.IPacket) error
}
)