[add] progress streaming
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-12-01 07:35:51 -05:00
parent 2c240f2f5c
commit 3057b86002
11 changed files with 257 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ type Server struct {
httpServer *http.Server
}
func NewServer(assets embed.FS) *Server {
func NewServer(assets *embed.FS) *Server {
c := config.Load()
db := database.NewMgr(c)
api := api.NewApi(db, c, assets)