add a log message

This commit is contained in:
b1ek 2024-01-07 12:28:36 +10:00
parent e7a0891bbb
commit e7230f0ec9
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 0 deletions

View File

@ -93,6 +93,7 @@ fn gif(state: Arc<Mutex<State>>) -> impl Filter<Extract = impl Reply, Error = Re
async fn main() { async fn main() {
let state = Arc::new(Mutex::new(State::default())); let state = Arc::new(Mutex::new(State::default()));
println!("Listening on 0.0.0.0:80");
warp::serve( warp::serve(
beat(state.clone()) beat(state.clone())
.or(gif(state)) .or(gif(state))