summaryrefslogtreecommitdiff
path: root/cmd/web/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/main.go')
-rw-r--r--cmd/web/main.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/cmd/web/main.go b/cmd/web/main.go
new file mode 100644
index 0000000..748e4bb
--- /dev/null
+++ b/cmd/web/main.go
@@ -0,0 +1,19 @@
+package main
+
+import (
+ "flag"
+ "fmt"
+ "log"
+ "net/http"
+
+ "paterissa.net/mblog/cmd/web/handlers"
+)
+
+func main() {
+ webmaster := flag.String("webmaster", "", "host of the website")
+ port := flag.Int("port", 5050, "the hosting port")
+ flag.Parse()
+
+ router := handlers.RegisterEndpoints(*webmaster)
+ log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), router))
+}