Fedor Erofeev
10/11/2025, 9:06 AM@tag users if someone having troubles, seems KLIP has some wrong sampleHristijan
10/11/2025, 9:13 PMAleksei Tirman [JB]
10/13/2025, 5:55 AMFedor Erofeev
10/13/2025, 6:21 AMrouting {
/**
* Get a list of widgets
*
* @tags widgets
*/
get("/widgets/{id}") {
...
}
}
What works is defining it as @tag :
routing {
/**
* Get a list of widgets
*
* @tag widgets
*/
get("/widgets/{id}") {
...
}
}
I think there is some mixup in the docs on the way to define tags 🙂 I'm using Ktor 3.3.0Bruce Hamilton
10/13/2025, 7:14 AM@tag, we'll need to update the docs 😞Fedor Erofeev
10/13/2025, 8:28 AM