Hey, I was wondering how you guys go about updatin...
# http4k
r
Hey, I was wondering how you guys go about updating your API while supporting a previous one using Http4k routes. For example if I have an update user endpoint, and I want to change it but support both the older version (v1) and new version (v2). Do you create a new route, handler, etc… Or do you for example pass a version parameter into the route and according to parameter define the route, and route passes it into handler while on the top routing handler you had both v1 and v2?