refactor: Webfingerのルーティング定義を移動

This commit is contained in:
usbharu 2023-04-01 21:23:27 +09:00
parent 2aa8424d06
commit 33776d29a3
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package dev.usbharu.hideout.routing.wellknown
import io.ktor.server.routing.*
fun Routing.webfinger(){
route("/.well-known/webfinger"){
get {
}
}
}