bill-ktor/src/main/kotlin/cn/fadinglight/routes/BillRoutes.kt
2022-10-18 17:20:50 +08:00

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