summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..07d4b67
--- /dev/null
+++ b/main.go
@@ -0,0 +1,24 @@
+package main
+
+import (
+ "flag"
+ "log"
+ "net/http"
+
+ "icyphox.sh/legit/config"
+ "icyphox.sh/legit/routes"
+)
+
+func main() {
+ var cfg string
+ flag.StringVar(&cfg, "config", "./config.yaml", "path to config file")
+ flag.Parse()
+
+ c, err := config.Read(cfg)
+ if err != nil {
+ log.Fatal(err)
+ }
+
+ mux := routes.Handlers(c)
+ log.Fatal(http.ListenAndServe(":5555", mux))
+}