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

Create first event handler and framework for it

This commit is contained in:
NG (Graham)
2025-07-03 21:53:34 -04:00
parent e69c7dabd6
commit 38ab4ba799
10 changed files with 120 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
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))
}