chore: vendor capcom6/android-sms-gateway upstream (Apache-2.0 baseline fork)

This commit is contained in:
2026-04-22 21:35:59 +01:00
commit 71078fda14
349 changed files with 26311 additions and 0 deletions
@@ -0,0 +1,16 @@
package me.capcom.smsgateway.domain
import me.capcom.smsgateway.BuildConfig
import me.capcom.smsgateway.modules.health.domain.CheckResult
import me.capcom.smsgateway.modules.health.domain.HealthResult
import me.capcom.smsgateway.modules.health.domain.Status
class HealthResponse(
healthResult: HealthResult,
val version: String = BuildConfig.VERSION_NAME,
val releaseId: Int = BuildConfig.VERSION_CODE,
) {
val status: Status = healthResult.status
val checks: Map<String, CheckResult> = healthResult.checks
}