Added auth

This commit is contained in:
Connor Johnstone
2026-03-19 14:02:33 -04:00
parent 93392db27c
commit 421ec3199b
21 changed files with 719 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
pub mod albums;
pub mod artists;
pub mod auth;
pub mod downloads;
pub mod search;
pub mod system;
@@ -10,6 +11,7 @@ use actix_web::web;
pub fn configure(cfg: &mut web::ServiceConfig) {
cfg.service(
web::scope("/api")
.configure(auth::configure)
.configure(artists::configure)
.configure(albums::configure)
.configure(tracks::configure)