12 lines
246 B
Kotlin
12 lines
246 B
Kotlin
package cn.fadinglight.routes
|
|
|
|
import io.ktor.server.routing.*
|
|
|
|
fun Route.billRoute() {
|
|
route("/bill") {
|
|
get {}
|
|
get("/{year}/{month}") {}
|
|
post("/create") {}
|
|
delete("/{year}/{month}/{day}") {}
|
|
}
|
|
} |