jpe-controle/FencerJudgeBack/src/main/kotlin/fr/teamflash/fencerjudgeback/restControllers/MainController.kt
2025-06-03 10:53:50 +02:00

12 lines
No EOL
289 B
Kotlin

package fr.teamflash.fencerjudgeback.restControllers
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController
@RestController
class MainController {
@GetMapping("/")
fun main() {
return print("Hello")
}
}