aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-01-28 17:51:00 +0000
committerr <r@freesoftwareextremist.com>2020-01-28 17:58:29 +0000
commit2af37d47783aac8c650ffd1578e2297b5784c73d (patch)
tree7b5c7a4b2fa530285bfaa16324e818d97dd00408 /main.go
parent57d2a4288b02fd1245ee85ae629649798578cf6c (diff)
downloadbloat-2af37d47783aac8c650ffd1578e2297b5784c73d.tar.gz
bloat-2af37d47783aac8c650ffd1578e2297b5784c73d.zip
Refactor everything
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://") &&