All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samplest.hello.HelloResource.kt Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package samplest.hello

import restx.annotations.GET
import restx.annotations.QueryParam
import restx.annotations.RestxResource
import restx.factory.Component
import java.util.*

/**
 * Created by xhanin on 13/01/2018.
 */
@Component
@RestxResource
class HelloResource {
    @GET("/hello")
    fun hello(): String = "Hello restx kotlin!"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy