diff options
| author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-15 22:40:55 +0100 |
|---|---|---|
| committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-15 22:40:55 +0100 |
| commit | 6aa72b3c8717f32e62c772aeed327d3cd9a6fa65 (patch) | |
| tree | e6ac67e68c410aed1f0baa2857aeaf60d73448bd /backend/src/main.rs | |
| parent | 13cdbc7ff760ae91ee3f62b2a2f62c7559ccaa3c (diff) | |
| download | planetwars.dev-6aa72b3c8717f32e62c772aeed327d3cd9a6fa65.tar.xz planetwars.dev-6aa72b3c8717f32e62c772aeed327d3cd9a6fa65.zip | |
gracefully handle invalid login credentials
Diffstat (limited to 'backend/src/main.rs')
| -rw-r--r-- | backend/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/main.rs b/backend/src/main.rs index 65be48d..3c0efa8 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -3,6 +3,6 @@ extern crate rocket; extern crate mozaic4_backend; #[launch] -fn launch() -> _ { +fn launch() -> rocket::Rocket<rocket::Build> { mozaic4_backend::rocket() } |
