1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 02:12:40 +01:00
This commit is contained in:
Madeline 2023-08-14 20:30:07 +10:00
parent a40dfcfaef
commit 8cf33244b9
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
4 changed files with 4 additions and 2 deletions

View File

@ -1 +1,2 @@
export * from "./Server";
export * from "./util";

View File

@ -1,6 +1,6 @@
import { makeOrderedCollection } from "@spacebar/ap";
import { route } from "@spacebar/api";
import { Config, Member } from "@spacebar/util";
import { makeOrderedCollection } from "activitypub/util/OrderedCollection";
import { Router } from "express";
const router = Router();

View File

@ -1,6 +1,6 @@
import { makeOrderedCollection } from "@spacebar/ap";
import { route } from "@spacebar/api";
import { Config, Message, Snowflake } from "@spacebar/util";
import { makeOrderedCollection } from "activitypub/util/OrderedCollection";
import { Router } from "express";
import { FindManyOptions, FindOperator, LessThan, MoreThan } from "typeorm";

View File

@ -0,0 +1 @@
export * from "./OrderedCollection";