is it possible to use ktor's type-safe requests to...
# getting-started
l
is it possible to use ktor's type-safe requests to call an endpoint that needs a query param with no argument. I tried doing this:
Copy code
@Serializable
@Resource("/end_point")
class EndPoint(val query: String? = "")

client().get(EndPoint())
This results in:
<http://base_url/end_point?query=>
but I just want it to be
<http://base_url/end_point?query>
c
Try #ktor
l
thanks!