11 lines
195 B
Go
11 lines
195 B
Go
package dumper
|
|
|
|
// BaseConfig Base dump command configuration.
|
|
type BaseConfig struct {
|
|
DumpPath string
|
|
CrtInfo FileInfo
|
|
KeyInfo FileInfo
|
|
DomainSubDir bool
|
|
Clean bool
|
|
}
|