feat: implement production cas v1

This commit is contained in:
2026-06-28 12:39:17 +08:00
parent dd53e3054e
commit b202d7b231
33 changed files with 1082 additions and 447 deletions
+5 -1
View File
@@ -114,7 +114,11 @@ pub trait ClientIntegration: Send + Sync {
///
/// - 成功:返回集成结果
/// - 失败:返回错误
async fn rollback(&self, client: &GameClient, backup_id: &str) -> Result<IntegrationResult, String>;
async fn rollback(
&self,
client: &GameClient,
backup_id: &str,
) -> Result<IntegrationResult, String>;
}
#[cfg(test)]