Image Saving & Serving

This commit is contained in:
2021-01-22 00:00:55 -05:00
parent 547bb4a8b9
commit 997806b7f0
11 changed files with 167 additions and 78 deletions

View File

@@ -24,7 +24,7 @@ func NewServer() *Server {
c := config.Load()
db := db.NewMgr(c)
auth := auth.NewMgr(db, c)
api := api.NewApi(db, auth)
api := api.NewApi(db, c, auth)
return &Server{
API: api,