first with full handle over rpm
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
parent
7948368573
commit
274ea454dd
50 changed files with 4309 additions and 0 deletions
31
config/config.go
Normal file
31
config/config.go
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
package config
|
||||
|
||||
import "time"
|
||||
|
||||
type Config struct {
|
||||
Server ServerConfig `mapstructure:"server"`
|
||||
DB DBConfig `mapstructure:"db"`
|
||||
DataDir string `mapstructure:"data_dir"`
|
||||
Sync SyncConfig `mapstructure:"sync"`
|
||||
}
|
||||
|
||||
type ServerConfig struct {
|
||||
Host string `mapstructure:"host"`
|
||||
Port int `mapstructure:"port"`
|
||||
}
|
||||
|
||||
type DBConfig struct {
|
||||
Path string `mapstructure:"path"`
|
||||
}
|
||||
|
||||
type SyncConfig struct {
|
||||
Interval string `mapstructure:"interval"`
|
||||
}
|
||||
|
||||
func (s SyncConfig) IntervalDuration() time.Duration {
|
||||
d, err := time.ParseDuration(s.Interval)
|
||||
if err != nil || d <= 0 {
|
||||
return time.Hour
|
||||
}
|
||||
return d
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue