8 lines
171 B
Go
8 lines
171 B
Go
|
package config
|
||
|
|
||
|
// ImportSettings represents import settings.
|
||
|
type ImportSettings struct {
|
||
|
Path string `json:"path" yaml:"Path"`
|
||
|
Move bool `json:"move" yaml:"Move"`
|
||
|
}
|