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