mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
19 lines
560 B
Go
19 lines
560 B
Go
package config
|
|
|
|
import (
|
|
"github.com/foomo/gocontemplate/pkg/contemplate"
|
|
)
|
|
|
|
type Tracify struct {
|
|
// Enable provider
|
|
Enabled bool `json:"enabled" yaml:"enabled"`
|
|
// Tracify token
|
|
Token string `json:"token" yaml:"token"`
|
|
// Tracify customer site id
|
|
CustomerSiteID string `json:"customerSiteId" yaml:"customerSiteId"`
|
|
// Google Consent settings
|
|
GoogleConsent GoogleConsent `json:"googleConsent" yaml:"googleConsent"`
|
|
// Google Tag Manager server container settings
|
|
ServerContainer contemplate.Config `json:"serverContainer" yaml:"serverContainer"`
|
|
}
|