mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 00:50:24 +08:00
9 lines
108 B
Go
9 lines
108 B
Go
package packet
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Session struct {
|
|
ID uuid.UUID
|
|
Payload []byte
|
|
}
|