12 lines
No EOL
289 B
Kotlin
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")
|
|
}
|
|
} |