diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-20 22:01:26 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-20 22:01:26 +0200 |
commit | 951cb293111db9ea0947cd65872da744bce92d31 (patch) | |
tree | d232f6c1443b96b24d821fdf05b1d96037091c30 /planetwars-server/src/routes/bots.rs | |
parent | a2a8a41689ad07eb2236ee438e9d01266946008d (diff) | |
download | planetwars.dev-951cb293111db9ea0947cd65872da744bce92d31.tar.xz planetwars.dev-951cb293111db9ea0947cd65872da744bce92d31.zip |
upgrade to axum 0.5
Diffstat (limited to 'planetwars-server/src/routes/bots.rs')
-rw-r--r-- | planetwars-server/src/routes/bots.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/src/routes/bots.rs b/planetwars-server/src/routes/bots.rs index 3bbaa1a..df0c4d0 100644 --- a/planetwars-server/src/routes/bots.rs +++ b/planetwars-server/src/routes/bots.rs @@ -12,7 +12,7 @@ use std::path::PathBuf; use thiserror; use crate::db::bots::{self, CodeBundle}; -use crate::db::ratings::{RankedBot, self}; +use crate::db::ratings::{self, RankedBot}; use crate::db::users::User; use crate::modules::bots::save_code_bundle; use crate::{DatabaseConnection, BOTS_DIR}; |