diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 5226692..8dbc7d0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,6 +30,7 @@ async fn main() -> std::io::Result<()> { .service(routes::song::song) .service(routes::album::album) .service(routes::artist::artist) + .service(routes::search_results::search_results) }) .bind(("127.0.0.1", 8000))? .run() |