Remove unused imports

This commit is contained in:
Alex Gleason 2023-04-29 17:07:26 -05:00
parent 693b200562
commit dabc3b7e3a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 2 deletions

View File

@ -1,9 +1,8 @@
import { type AppController } from '@/app.ts'; import { type AppController } from '@/app.ts';
import { nip19 } from '@/deps.ts';
import { getAuthor } from '../client.ts'; import { getAuthor } from '../client.ts';
import { toAccount } from '../transmute.ts'; import { toAccount } from '../transmute.ts';
import { bech32ToPubkey, isNostrId } from '../utils.ts'; import { bech32ToPubkey } from '../utils.ts';
const credentialsController: AppController = async (c) => { const credentialsController: AppController = async (c) => {
const pubkey = c.get('pubkey')!; const pubkey = c.get('pubkey')!;