From d93c8af0683695bff93b017830bd997c1bcf989c Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Sat, 1 Apr 2023 21:23:27 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Webfinger=E3=81=AE=E3=83=AB?= =?UTF-8?q?=E3=83=BC=E3=83=86=E3=82=A3=E3=83=B3=E3=82=B0=E5=AE=9A=E7=BE=A9?= =?UTF-8?q?=E3=82=92=E7=A7=BB=E5=8B=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hideout/routing/wellknown/WebfingerRouting.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/kotlin/dev/usbharu/hideout/routing/wellknown/WebfingerRouting.kt diff --git a/src/main/kotlin/dev/usbharu/hideout/routing/wellknown/WebfingerRouting.kt b/src/main/kotlin/dev/usbharu/hideout/routing/wellknown/WebfingerRouting.kt new file mode 100644 index 00000000..62bf0c81 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/hideout/routing/wellknown/WebfingerRouting.kt @@ -0,0 +1,11 @@ +package dev.usbharu.hideout.routing.wellknown + +import io.ktor.server.routing.* + +fun Routing.webfinger(){ + route("/.well-known/webfinger"){ + get { + + } + } +}