Add a Kotlin DSL for endpoint documentation (#249)

This commit is contained in:
Mitchell Syer
2021-11-14 09:46:39 -05:00
committed by GitHub
parent 845b588426
commit b02884f58d
5 changed files with 450 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ object MangaAPI {
}
path("manga") {
get("{mangaId}", MangaController::retrieve)
get("{mangaId}", MangaController.retrieve)
get("{mangaId}/thumbnail", MangaController::thumbnail)
get("{mangaId}/category", MangaController::categoryList)