Support webfinger

This commit is contained in:
2025-03-11 21:51:14 +08:00
parent abb0295858
commit 15e38a9baf
2 changed files with 60 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import (
func MapAPIs(app *fiber.App, baseURL string) {
api := app.Group(baseURL).Name("API")
{
api.Get("/webfinger", getWebfinger)
activitypub := api.Group("/activitypub").Name("ActivityPub API")
{
activitypub.Post("/users/:name/inbox", apUserInbox)