Closed seabaylea closed 6 years ago
Add initial support for Kotlin. This supports two API formats:
gson
fun main(args: JsonObject) : JsonObject {}
Data class in / data class out, e.g.:
data class User( val id: String ) fun main(user: User) : User { return user }
This only supports sync/blocking APIs at the moment - async can be added but there should be a discussion on the use of callbacks vs Futures, etc.
Could you add the hello world example you have in your comment in the README?
Add initial support for Kotlin. This supports two API formats:
gson
package:Data class in / data class out, e.g.:
This only supports sync/blocking APIs at the moment - async can be added but there should be a discussion on the use of callbacks vs Futures, etc.