Start on album download

This commit is contained in:
viktorstrate
2021-09-26 00:21:02 +02:00
parent 77e1a45f0c
commit 92662f9b8e
2 changed files with 87 additions and 0 deletions

View File

@@ -107,6 +107,9 @@ func main() {
videoRouter := endpointRouter.PathPrefix("/video").Subrouter()
routes.RegisterVideoRoutes(db, videoRouter)
downloadsRouter := endpointRouter.PathPrefix("/download").Subrouter()
routes.RegisterDownloadRoutes(db, downloadsRouter)
shouldServeUI := utils.ShouldServeUI()
if shouldServeUI {