Skip to content

Commit 93f2123

Browse files
committed
Add health route and readme
1 parent 0cb6720 commit 93f2123

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# kord-repo-proxy
2+
3+
Code running on snapshots.kord.dev

src/Application.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ fun main() {
2727

2828
fun Application.module() {
2929
routing {
30+
get("healthz") {
31+
call.respond("All good!")
32+
}
33+
3034
route("/{...}") {
3135
handle {
3236
val url = call.url {

0 commit comments

Comments
 (0)