Update CardMakerController.kt

This commit is contained in:
Paiton Bertschy 2026-02-25 13:55:06 -06:00 committed by GitHub
parent 707ce3715b
commit b89f123d1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,7 +61,7 @@ class CardMakerController(
}
fun gameConnect(modelKind: Int, type: Int, titleUri: String) =
mapOf("modelkind" to modelKind, "type" to type, "titleUri" to titleUri)
mapOf("modelKind" to modelKind, "type" to type, "titleUri" to titleUri)
@API("GetGameConnectApi")
fun getGameConnect(@ModelAttribute request: MutableMap<String, Any>): Any? {
@ -105,4 +105,4 @@ class CardMakerController(
@API("UpsertClientSettingApi")
fun upsertClientSetting() = "{\"returnCode\":1,\"apiName\":\"UpsertClientSettingApi\"}"
}
}