From 2af37d47783aac8c650ffd1578e2297b5784c73d Mon Sep 17 00:00:00 2001 From: r Date: Tue, 28 Jan 2020 17:51:00 +0000 Subject: Refactor everything --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main.go') 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://") && -- cgit v1.2.3