7 lines
72 B
Go
7 lines
72 B
Go
|
|
package model
|
||
|
|
|
||
|
|
type Packet struct {
|
||
|
|
Endpoint string
|
||
|
|
Data []byte
|
||
|
|
}
|