init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package xyz.fortern.forternapi
|
||||
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication
|
||||
import org.springframework.boot.runApplication
|
||||
|
||||
@SpringBootApplication
|
||||
class ForternApiApplication
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
runApplication<ForternApiApplication>(*args)
|
||||
}
|
||||
0
src/main/resources/application.properties
Normal file
0
src/main/resources/application.properties
Normal file
@@ -0,0 +1,13 @@
|
||||
package xyz.fortern.forternapi
|
||||
|
||||
import org.junit.jupiter.api.Test
|
||||
import org.springframework.boot.test.context.SpringBootTest
|
||||
|
||||
@SpringBootTest
|
||||
class ForternApiApplicationTests {
|
||||
|
||||
@Test
|
||||
fun contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user