package com.android.trisolarisserver.controller.system import org.springframework.web.bind.annotation.GetMapping import org.springframework.web.bind.annotation.RestController @RestController class Health { @GetMapping("/health") fun health(): Map { return mapOf("status" to "ok", "build" to "2026-01-26-authfix") } @GetMapping("/") fun root(): Map { return mapOf("status" to "ok", "build" to "2026-01-26-authfix") } }