watchdob-bell: 設定ファイルのkeyを修正

This commit is contained in:
usbharu 2024-03-19 15:33:11 +09:00
parent b363100b8c
commit 06e00f9dd6
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 1 additions and 1 deletions
watchdog-bell/src/main/kotlin/dev/usbharu/watchdog/bell

View File

@ -16,7 +16,7 @@ fun main(args: Array<String>) {
fun Application.module() {
val url = environment.config.property("watchdog-bell.url").getString()
val token = environment.config.property("watchdog-bell.token").getString()
val port = environment.config.property("watchdog-bell.token").getString().toInt()
val port = environment.config.property("watchdog-bell.port").getString().toInt()
val httpClient = HttpClient(CIO) {
expectSuccess = true