commonMain.community.flock.wirespec.plugin.Format.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arguments Show documentation
Show all versions of arguments Show documentation
Type safe wires made easy
package community.flock.wirespec.plugin
enum class Format {
OpenApiV2, OpenApiV3;
companion object {
override fun toString() = entries.joinToString()
}
}