webfinger: fix import order

This commit is contained in:
Alex Gleason 2023-08-29 13:14:03 -05:00
parent d21ec6d241
commit ebd933126a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -1,9 +1,9 @@
import { Conf } from '@/config.ts'; import { Conf } from '@/config.ts';
import { findUser } from '@/db/users.ts';
import { nip19, z } from '@/deps.ts'; import { nip19, z } from '@/deps.ts';
import type { AppContext, AppController } from '@/app.ts'; import type { AppContext, AppController } from '@/app.ts';
import type { Webfinger } from '@/schemas/webfinger.ts'; import type { Webfinger } from '@/schemas/webfinger.ts';
import { findUser } from '@/db/users.ts';
const webfingerQuerySchema = z.object({ const webfingerQuerySchema = z.object({
resource: z.string().url(), resource: z.string().url(),