diff options
Diffstat (limited to 'planetwars-server/src/lib.rs')
-rw-r--r-- | planetwars-server/src/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/planetwars-server/src/lib.rs b/planetwars-server/src/lib.rs index 90e0b44..ccd5a02 100644 --- a/planetwars-server/src/lib.rs +++ b/planetwars-server/src/lib.rs @@ -55,10 +55,6 @@ pub async fn api() -> Router { ) .route("/matches/:match_id", get(routes::matches::get_match_log)) .route("/submit_bot", post(routes::demo::submit_bot)) - .route( - "/submission_match_log/:match_id", - get(routes::demo::get_submission_match_log), - ) .layer(AddExtensionLayer::new(pool)); api } |