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

This commit is contained in:
usbharu 2023-04-01 21:23:27 +09:00
parent db362fb48b
commit d93c8af068
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 {
}
}
}