traefik-certs-dumper/dumper/config.go
2019-09-01 19:20:29 +02:00

20 lines
338 B
Go

package dumper
// BaseConfig Base dump command configuration.
type BaseConfig struct {
DumpPath string
CrtInfo FileInfo
KeyInfo FileInfo
DomainSubDir bool
Clean bool
Watch bool
Hook string
Version string
}
// FileInfo File information.
type FileInfo struct {
Name string
Ext string
}