mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-21 21:33:22 +01:00
13 lines
187 B
Go
13 lines
187 B
Go
package model
|
|
|
|
// Flags holds flags from command line
|
|
type Flags struct {
|
|
Cfgfile string
|
|
Populate bool
|
|
Timezone string
|
|
LogLevel string
|
|
LogJson bool
|
|
RunOnce bool
|
|
Docker bool
|
|
}
|