com.natpryce.krouton.UrlTemplateElement.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krouton Show documentation
Show all versions of krouton Show documentation
Type-safe and compositional URL routing and reverse routing
package com.natpryce.krouton
sealed class UrlTemplateElement
data class Literal(val value: String) : UrlTemplateElement()
data class Variable(val name: String) : UrlTemplateElement()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy