mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
10 lines
122 B
Groovy
10 lines
122 B
Groovy
|
@RestController
|
||
|
class ThisWillActuallyRun {
|
||
|
|
||
|
@RequestMapping("/")
|
||
|
String home() {
|
||
|
"Hello World!"
|
||
|
}
|
||
|
|
||
|
}
|