main.io.github.smiley4.ktorswaggerui.data.SwaggerUiSyntaxHighlight.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktor-swagger-ui Show documentation
Show all versions of ktor-swagger-ui Show documentation
Ktor plugin to document routes and provide a Swagger-UI
package io.github.smiley4.ktorswaggerui.data
/**
* The syntax-highlight theme to use for code-blocks in swagger-ui.
*/
enum class SwaggerUiSyntaxHighlight(val value: String) {
DISABLED("disabled"),
AGATE("agate"),
ARTA("arta"),
MONOKAI("monokai"),
NORD("nord"),
OBSIDIAN("obsidian"),
TOMORROW_NIGHT("tomorrow-night"),
IDEA("idea")
}