mirror of
https://github.com/fumiama/WireGold.git
synced 2025-09-26 19:21:11 +08:00
15 lines
294 B
Go
15 lines
294 B
Go
package data
|
|
|
|
import (
|
|
"github.com/fumiama/orbyte/pbuf"
|
|
|
|
"github.com/fumiama/WireGold/gold/head"
|
|
"github.com/fumiama/WireGold/gold/link"
|
|
)
|
|
|
|
func init() {
|
|
link.RegisterDispacher(head.ProtoData, func(header *head.Packet, peer *link.Link, data pbuf.Bytes) {
|
|
peer.ToLower(header, data)
|
|
})
|
|
}
|