Files
zurg/internal/config/types.go
Ben Sarmiento f1717a8d94 Add new configs
2023-10-20 03:59:47 +02:00

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"`
}