mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
11 lines
163 B
Go
11 lines
163 B
Go
package automapper
|
|
|
|
type AutoMapperConf struct {
|
|
OutDir string
|
|
}
|
|
|
|
func DefaultConf() *AutoMapperConf {
|
|
return &AutoMapperConf{
|
|
OutDir: "internal/mapper",
|
|
}
|
|
}
|