summaryrefslogtreecommitdiff
path: root/cmd/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/main.go')
-rw-r--r--cmd/main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/main.go b/cmd/main.go
new file mode 100644
index 0000000..cd8d4fe
--- /dev/null
+++ b/cmd/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+ "log"
+
+ "git.mithe.dk/web-portfolio/internal"
+)
+
+func main() {
+ server := internal.NewSever()
+ if err := server.Start("localhost:42069"); err != nil {
+ log.Fatal(err)
+ }
+}