11 lines
184 B
Kotlin
11 lines
184 B
Kotlin
package com.baeldung.springbootkotlin
|
|
|
|
import org.springframework.stereotype.Service
|
|
|
|
@Service
|
|
class HelloService {
|
|
|
|
fun getHello(): String {
|
|
return "hello service"
|
|
}
|
|
} |