Implementing a streaming setup with Usenet

This commit is contained in:
Mukhtar Akere
2025-08-01 15:27:24 +01:00
parent afe577bf2f
commit f9861e3b54
65 changed files with 9437 additions and 924 deletions

View File

@@ -47,6 +47,9 @@ func (wb *Web) Routes() http.Handler {
r.Get("/torrents", wb.handleGetTorrents)
r.Delete("/torrents/{category}/{hash}", wb.handleDeleteTorrent)
r.Delete("/torrents/", wb.handleDeleteTorrents)
r.Get("/nzbs", wb.handleGetNZBs)
r.Post("/nzbs/add", wb.handleAddNZBContent)
r.Delete("/nzbs/{id}", wb.handleDeleteNZB)
r.Get("/config", wb.handleGetConfig)
r.Post("/config", wb.handleUpdateConfig)
})