Initial commit

This commit is contained in:
2020-02-20 08:31:22 +01:00
commit b7bdd7bbea
17 changed files with 826 additions and 0 deletions

21
cmd/scaffold/main.go Normal file
View File

@@ -0,0 +1,21 @@
package main
import (
"log"
"os"
"gitlab.com/wpetit/scaffold/internal/command"
"github.com/urfave/cli/v2"
)
func main() {
app := &cli.App{
Usage: "generate source code for goweb based projects",
Commands: command.All(),
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}