Hi, I use the Ktor http client in a MP project, I have an api url with a custom part like
"users/{name}/commits"
, is there something in Ktor to handle this ? For the moment I use `"users/{name}/commits".replace("{name}", "Jérôme")`🙃
Retrofit handle it like this :