mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
7 lines
210 B
Rust
7 lines
210 B
Rust
|
|
mod validate_game_guid;
|
||
|
|
|
||
|
|
pub async fn handler(init_ctx: &crate::InitConfig) -> crate::handler::LnlEventHandler {
|
||
|
|
crate::handler::LnlEventHandler::new()
|
||
|
|
.add(validate_game_guid::handler(init_ctx))
|
||
|
|
}
|