refactor(federation): 🚚 Remove custom path alias

This commit is contained in:
Jesse Wierzbinski 2024-07-23 00:11:05 +02:00
parent 1529708dd8
commit 2313bcbbcc
No known key found for this signature in database
13 changed files with 30 additions and 37 deletions

View file

@ -10,8 +10,8 @@ import type {
ServerMetadata,
Undo,
User,
} from "@/federation/schemas";
import type { EntityValidator } from "@/federation/validator/index";
} from "../schemas";
import type { EntityValidator } from "../validator/index";
type MaybePromise<T> = T | Promise<T>;