mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
9 lines
119 B
Groovy
9 lines
119 B
Groovy
package org.test
|
|
|
|
class Runner implements CommandLineRunner {
|
|
|
|
void run(String... args) {
|
|
print "Hello World!"
|
|
}
|
|
}
|