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