summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/server/main.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go
new file mode 100644
index 000000000..e62f7f96d
--- /dev/null
+++ b/cmd/server/main.go
@@ -0,0 +1,10 @@
+package main
+
+import (
+ "github.com/gotosocial/server/internal/api"
+)
+
+func main() {
+ router := api.NewRouter()
+ router.Route()
+}