i have mulitple mapXParam functions, like this: ``...
# announcements
t
i have mulitple mapXParam functions, like this:
Copy code
val (name, email) = ctx.mapQueryParams("name", "email") ?: throw MissingQueryParamException()
val (username, password) = ctx.mapFormParams("username", "password") ?: throw MissingFormParamException()
so i would like to only have 1 implementation