spring-boot/spring-boot-project/spring-boot-cli/samples/runner.groovy

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
119 B
Groovy
Raw Normal View History

package org.test
class Runner implements CommandLineRunner {
void run(String... args) {
print "Hello World!"
}
}