mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
12 lines
333 B
Go
12 lines
333 B
Go
package analytics
|
|
|
|
type StartEvent struct {
|
|
ClientId string `json:"-"`
|
|
Version string `json:"version"`
|
|
FilterLength int `json:"filterLength"`
|
|
CustomAddress bool `json:"customAddress"`
|
|
CustomBase bool `json:"customBase"`
|
|
Protected bool `json:"protected"`
|
|
HasHostname bool `json:"hasHostname"`
|
|
}
|