fix compile warnings

This commit is contained in:
blek 2023-09-29 20:36:02 +10:00
parent 9c439783c7
commit 0eb673f0e5
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 1 additions and 5 deletions

View File

@ -1,3 +1,3 @@
# fileD - file daemon
This is a part of blek! File that is responsible for serving and uploading files.
This module is released under the GPLv3 with additions, copy of which is included in the top level of this repository.
This module is released under the GPLv3 with additions, copy of which is included in the top level of this repository.

View File

@ -2,8 +2,6 @@
web - The part of filed that handles everything related to HTTP
*/
use warp::Filter;
mod pages;
/*
@ -13,7 +11,5 @@ pub async fn serve() {
log::info!("Listening on 0.0.0.0:80");
// let hello = warp::any().map(|| "Hi");
warp::serve(pages::get_routes()).run(([0,0,0,0], 80)).await;
}