11 lines
351 B
Go
11 lines
351 B
Go
package config
|
|
|
|
type ZurgConfig struct {
|
|
Version string `yaml:"zurg"`
|
|
Token string `yaml:"token"`
|
|
Port string `yaml:"port"`
|
|
NumOfWorkers int `yaml:"concurrent_workers"`
|
|
RefreshEverySeconds int `yaml:"check_for_changes_every_secs"`
|
|
CacheTimeHours int `yaml:"info_cache_time_hours"`
|
|
}
|