Add queries module for getting events for certain application needs

This commit is contained in:
Alex Gleason
2023-08-17 13:12:24 -05:00
parent b1c5dd0e34
commit 870a6f5261
8 changed files with 83 additions and 93 deletions

View File

@@ -1,7 +1,8 @@
import { type AppController } from '@/app.ts';
import { type Filter, findReplyTag, z } from '@/deps.ts';
import { getAuthor, getFollows, publish } from '@/client.ts';
import { publish } from '@/client.ts';
import { getFilters } from '@/mixer.ts';
import { getAuthor, getFollows } from '@/queries.ts';
import { jsonMetaContentSchema } from '@/schemas/nostr.ts';
import { signEvent } from '@/sign.ts';
import { toAccount, toStatus } from '@/transformers/nostr-to-mastoapi.ts';