match.go for tictactoe

This commit is contained in:
2025-11-25 17:44:16 +05:30
parent 7c3e544956
commit f5e51e4bf2
2 changed files with 290 additions and 0 deletions

View File

@@ -30,6 +30,10 @@ func InitModule(
logger.Error("Failed to register RPC: %v", err)
return err
}
if err := initializer.RegisterMatch("tictactoe", NewMatch); err != nil {
logger.Error("Failed to register RPC: %v", err)
return err
}
logger.Info("Go module loaded successfully!")
return nil