fix: remove unused imports

This commit is contained in:
P. Reis 2025-03-03 17:34:13 -03:00
parent 3bcf716795
commit 28c3b07a3e

View file

@ -1,15 +1,12 @@
import { nip19 } from 'nostr-tools';
import { z } from 'zod';
import { type AppController } from '@/app.ts';
import { createAdminEvent, parseBody, updateAdminEvent, updateUser } from '@/utils/api.ts';
import { nostrNow } from '@/utils.ts';
import { lookupPubkey } from '@/utils/lookup.ts';
import { getPleromaConfigs } from '@/utils/pleroma.ts';
import { accountFromPubkey, renderAccount } from '@/views/mastodon/accounts.ts';
import { configSchema, elixirTupleSchema } from '@/schemas/pleroma-api.ts';
import { hydrateEvents } from '@/storages/hydrate.ts';
import { logi } from '@soapbox/logi';
const frontendConfigController: AppController = async (c) => {
const configDB = await getPleromaConfigs(c.var);