1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:04:59 +01:00
Files
dozzle/types/types.go
2025-05-15 15:21:53 +00:00

24 lines
922 B
Go

package types
type BeaconEvent struct {
Name string `json:"name"`
Version string `json:"version"`
Browser string `json:"browser"`
AuthProvider string `json:"authProvider"`
FilterLength int `json:"filterLength"`
Clients int `json:"clients"`
HasCustomAddress bool `json:"hasCustomAddress"`
HasCustomBase bool `json:"hasCustomBase"`
HasHostname bool `json:"hasHostname"`
RunningContainers int `json:"runningContainers"`
HasActions bool `json:"hasActions"`
HasShell bool `json:"hasShell"`
IsSwarmMode bool `json:"isSwarmMode"`
ServerVersion string `json:"serverVersion"`
ServerID string `json:"serverID"`
Mode string `json:"mode"`
RemoteAgents int `json:"remoteAgents"`
RemoteClients int `json:"remoteClients"`
SubCommand string `json:"subCommand"`
}