1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Rename email.rs to username.rs for auth server

This commit is contained in:
NG (Graham)
2025-05-11 20:49:19 -04:00
parent b04a8902e2
commit aea56bf01e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
mod debug;
mod email;
mod username;
mod steam;
pub fn stage() -> rocket::fairing::AdHoc {
rocket::fairing::AdHoc::on_ignite("robocraft", |rocket| async {
rocket.attach(email::stage())
rocket.attach(username::stage())
.attach(steam::stage())
.attach(debug::stage())
.register("/", rocket::catchers![unauthorized])