1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/rc_multiplayer/src/events/mod.rs

7 lines
210 B
Rust
Raw Normal View History

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))
}