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, 0 insertions, 2 deletions
diff --git a/src/main.go b/src/main.go
index d3f6c03..0687aae 100644
--- a/src/main.go
+++ b/src/main.go
@@ -1,7 +1,6 @@
package main
import (
- "gitlab.com/alexkavon/newsstand/src/auth"
"gitlab.com/alexkavon/newsstand/src/conf"
"gitlab.com/alexkavon/newsstand/src/db"
"gitlab.com/alexkavon/newsstand/src/server"
@@ -16,7 +15,6 @@ func main() {
s := server.NewServer(config, db.NewDb(config))
s.BuildUi()
routers := []server.Routes{
- auth.Routes,
user.Routes,
}
for _, r := range routers {