aboutsummaryrefslogtreecommitdiff
path: root/src/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go
index 4dc2caf..208944f 100644
--- a/src/main.go
+++ b/src/main.go
@@ -3,6 +3,7 @@ package main
import (
"gitlab.com/alexkavon/newsstand/src/conf"
"gitlab.com/alexkavon/newsstand/src/db"
+ "gitlab.com/alexkavon/newsstand/src/post"
"gitlab.com/alexkavon/newsstand/src/server"
"gitlab.com/alexkavon/newsstand/src/user"
)
@@ -18,6 +19,7 @@ func main() {
s.BuildUi()
routers := []server.Routes{
user.Routes,
+ post.Routes,
}
for _, r := range routers {
s.RegisterRoutes(r)