mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
16 lines
392 B
Rust
16 lines
392 B
Rust
#[allow(unused_variables)]
|
|
mod email;
|
|
mod steam;
|
|
mod temporary_get_user_id;
|
|
#[allow(unused_variables)]
|
|
mod token;
|
|
|
|
pub fn stage() -> rocket::fairing::AdHoc {
|
|
rocket::fairing::AdHoc::on_ignite("JSON", |rocket| async {
|
|
rocket.attach(email::stage())
|
|
.attach(steam::stage())
|
|
.attach(temporary_get_user_id::stage())
|
|
.attach(token::stage())
|
|
})
|
|
}
|