Is there default way to implement Api versioning s...
# ktor
f
Is there default way to implement Api versioning similar to Spring? E.g.
Copy code
@GetMapping(value = "/{id}", version = "1.0")
a
Unfortunately, there is no out-of-the-box solution. Please take a look at this answer on implementing the versioning logic for routing.
👍 1