summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-12-06 19:21:55 +0100
committerMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-12-06 19:21:55 +0100
commitb668f82b3bb834265c842bff96c252a513afa647 (patch)
tree49286ab3ef556758a6620378e1aa01fd5de59f02 /cmd
downloadweb-portfolio-b668f82b3bb834265c842bff96c252a513afa647.tar.gz
web-portfolio-b668f82b3bb834265c842bff96c252a513afa647.zip
Initial commit
Diffstat (limited to 'cmd')
-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)
+ }
+}