fix(mongo): fix file name generation errors (#2479)
Before this, no matter what style is used, lowercase file names without underscores will be generated.
This commit is contained in:
@@ -97,7 +97,7 @@ func generateCustomModel(ctx *Context) error {
|
|||||||
|
|
||||||
func generateTypes(ctx *Context) error {
|
func generateTypes(ctx *Context) error {
|
||||||
for _, t := range ctx.Types {
|
for _, t := range ctx.Types {
|
||||||
fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"types")
|
fn, err := format.FileNamingFormat(ctx.Cfg.NamingFormat, t+"_types")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user