Add root API route

This commit is contained in:
Fabian Wolter
2026-06-09 17:16:46 +00:00
parent 2d44b4c1af
commit 241a6744ab
@@ -19,6 +19,13 @@ fun main() {
fun Application.module() { fun Application.module() {
routing { routing {
get("/") {
call.respondText(
text = "RUVNOX Tactical API",
contentType = ContentType.Text.Plain
)
}
get("/health") { get("/health") {
call.respondText( call.respondText(
text = "RUVNOX Tactical server online", text = "RUVNOX Tactical server online",