mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
15 lines
546 B
Go
15 lines
546 B
Go
package config
|
|
|
|
import (
|
|
"github.com/foomo/gocontemplate/pkg/contemplate"
|
|
)
|
|
|
|
type Umami struct {
|
|
Enabled bool `json:"enabled" yaml:"enabled"`
|
|
Domain string `json:"domain" yaml:"domain"`
|
|
WebsiteID string `json:"websiteId" yaml:"websiteId"`
|
|
EndpointURL string `json:"endpointUrl" yaml:"endpointUrl"`
|
|
GoogleConsent GoogleConsent `json:"googleConsent" yaml:"googleConsent"`
|
|
ServerContainer contemplate.Config `json:"serverContainer" yaml:"serverContainer"`
|
|
}
|