mirror of
https://github.com/wlynxg/NetHive.git
synced 2025-10-13 10:43:41 +08:00
10 lines
107 B
Go
10 lines
107 B
Go
package engine
|
|
|
|
import "net/netip"
|
|
|
|
type Payload struct {
|
|
Src netip.Addr
|
|
Dst netip.Addr
|
|
Data []byte
|
|
}
|