aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 4f5851d..003fe5d 100644
--- a/main.go
+++ b/main.go
@@ -12,7 +12,7 @@ import (
"bloat/config"
"bloat/kv"
"bloat/renderer"
- "bloat/repository"
+ "bloat/repo"
"bloat/service"
"bloat/util"
)
@@ -67,8 +67,8 @@ func main() {
log.Fatal(err)
}
- sessionRepo := repository.NewSessionRepository(sessionDB)
- appRepo := repository.NewAppRepository(appDB)
+ sessionRepo := repo.NewSessionRepo(sessionDB)
+ appRepo := repo.NewAppRepo(appDB)
customCSS := config.CustomCSS
if !strings.HasPrefix(customCSS, "http://") &&