From 1892327cee2c3fa1d3bea729bd08eb63c2189a96 Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sat, 30 Apr 2022 11:00:55 -0700 Subject: restructured code base to prevent circular dependicies --- routes/index.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'routes/index.go') diff --git a/routes/index.go b/routes/index.go index 23b3f39..015ad0c 100644 --- a/routes/index.go +++ b/routes/index.go @@ -1,22 +1,22 @@ package routes import ( + "github.com/FChannel0/FChannel-Server/activitypub" "github.com/FChannel0/FChannel-Server/config" "github.com/FChannel0/FChannel-Server/db" - "github.com/FChannel0/FChannel-Server/util" "github.com/FChannel0/FChannel-Server/webfinger" "github.com/gofiber/fiber/v2" ) func Index(ctx *fiber.Ctx) error { - actor, err := db.GetActorFromDB(config.Domain) + actor, err := activitypub.GetActorFromDB(config.Domain) if err != nil { return err } // this is a activitpub json request return json instead of html page - if util.AcceptActivity(ctx.Get("Accept")) { - db.GetActorInfo(ctx, actor.Id) + if activitypub.AcceptActivity(ctx.Get("Accept")) { + activitypub.GetActorInfo(ctx, actor.Id) return nil } @@ -38,7 +38,7 @@ func Index(ctx *fiber.Ctx) error { data.Title = "Welcome to " + actor.PreferredUsername data.PreferredUsername = actor.PreferredUsername - data.Boards = db.Boards + data.Boards = webfinger.Boards data.Board.Name = "" data.Key = config.Key data.Board.Domain = config.Domain -- cgit v1.2.3