[add] progress streaming
Some checks failed
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2023-12-01 07:35:51 -05:00
parent 2c240f2f5c
commit 313fb5b30c
10 changed files with 256 additions and 18 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)