aboutsummaryrefslogtreecommitdiff
path: root/cmd/shorg/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/shorg/main.go')
-rw-r--r--cmd/shorg/main.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/cmd/shorg/main.go b/cmd/shorg/main.go
new file mode 100644
index 0000000..df36817
--- /dev/null
+++ b/cmd/shorg/main.go
@@ -0,0 +1,34 @@
+package main
+
+import (
+ "log"
+ "os"
+
+ "github.com/urfave/cli/v2"
+
+ "sh.org.ru/cmd/shorg/migrator"
+ "sh.org.ru/cmd/shorg/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",
+ },
+ },
+ },
+ migrator.Migrator(),
+ },
+ }
+ if err := app.Run(os.Args); err != nil {
+ log.Fatal(err)
+ }
+}