aboutsummaryrefslogtreecommitdiff
path: root/cmd/app/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/app/main.go')
-rw-r--r--cmd/app/main.go43
1 files changed, 43 insertions, 0 deletions
diff --git a/cmd/app/main.go b/cmd/app/main.go
new file mode 100644
index 0000000..dcd3eb0
--- /dev/null
+++ b/cmd/app/main.go
@@ -0,0 +1,43 @@
+package main
+
+import (
+ "log"
+ "os"
+
+ "github.com/urfave/cli/v2"
+ "sh.org.ru/cmd/app/importer"
+ "sh.org.ru/cmd/app/serve"
+)
+
+func main() {
+ app := &cli.App{
+ Name: "app",
+ Commands: []*cli.Command{
+ {
+ Name: "serve",
+ Action: serve.Run,
+ Flags: []cli.Flag{
+ &cli.StringFlag{
+ Name: "config",
+ Value: "./config/dev.yaml",
+ Usage: "config",
+ },
+ },
+ },
+ {
+ Name: "import",
+ Action: importer.Run,
+ Flags: []cli.Flag{
+ &cli.StringFlag{
+ Name: "config",
+ Value: "./config/dev.yaml",
+ Usage: "config",
+ },
+ },
+ },
+ },
+ }
+ if err := app.Run(os.Args); err != nil {
+ log.Fatal(err)
+ }
+}