Add sample func

This commit is contained in:
2021-01-26 13:28:23 +07:00
parent 97d3934905
commit 981f074049
3 changed files with 11 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package com.example.demo
import com.example.lib.MyLib
import com.example.lib.MyUtils
import org.springframework.boot.CommandLineRunner
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
@@ -9,6 +10,8 @@ import org.springframework.boot.runApplication
class DemoApplication : CommandLineRunner {
override fun run(vararg args: String?) {
MyLib.doOnMe()
println("Hello JJKK: ${MyUtils.helloWorld()}")
}
}