good morning!!!!

Skip to content
Commits on Source (4)
......@@ -5,9 +5,9 @@ import (
"fmt"
"os"
"gfx.cafe/open/jrpc/contrib/openrpc/generate"
"gfx.cafe/open/jrpc/contrib/openrpc/templates"
"gfx.cafe/open/jrpc/contrib/openrpc/types"
"github.com/alecthomas/kong"
)
......@@ -74,9 +74,9 @@ func (c *GenerateCommand) Run() error {
}
openrpc.Package = c.Package
//if err = generate.Generate(openrpc, c.Template, c.Output); err != nil {
// return err
//}
if err = generate.Generate(openrpc, c.Template, c.Output); err != nil {
return err
}
return nil
}
......
......@@ -9,8 +9,8 @@ import (
"path/filepath"
"text/template"
"gfx.cafe/open/jrpc/openrpc/templates"
"gfx.cafe/open/jrpc/openrpc/types"
"gfx.cafe/open/jrpc/contrib/openrpc/templates"
"gfx.cafe/open/jrpc/contrib/openrpc/types"
"github.com/iancoleman/strcase"
)
......