bill-ktor/src/main/kotlin/cn/fadinglight/routes/BillRoutes.kt
2022-10-09 13:15:00 +08:00

13 lines
241 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}") {}
}
}