# Spring Boot, Kotlin, TestContainers, Selenide testing with remote web driver
# greeting API
greeting/greeting-api/src/main/kotlin/example/greeting/api/api.kt
file:
// Requests
@JsonInclude(NON_EMPTY)
data class GreetingRequest(
val name: String = "",
)
// DTO responses
@JsonInclude(NON_EMPTY)
data class GreetingDTO(
val value: String = "",
)
TBD: Implement me please...