mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 05:14:06 +02:00
14 lines
557 B
Go
14 lines
557 B
Go
package csconfig
|
|
|
|
/*cscli specific config, such as hub directory*/
|
|
type CscliCfg struct {
|
|
Output string `yaml:"output,omitempty"`
|
|
HubBranch string `yaml:"hub_branch"`
|
|
SimulationConfig *SimulationConfig `yaml:"-"`
|
|
DbConfig *DatabaseCfg `yaml:"-"`
|
|
HubDir string `yaml:"-"`
|
|
DataDir string `yaml:"-"`
|
|
ConfigDir string `yaml:"-"`
|
|
HubIndexFile string `yaml:"-"`
|
|
SimulationFilePath string `yaml:"-"`
|
|
}
|