mirror of
https://github.com/hay-kot/homebox.git
synced 2024-12-23 23:36:30 +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",
|
|
}
|
|
}
|