fix import order in SigninWithPasskeyApiService

This commit is contained in:
Hazelnoot 2024-12-08 07:49:06 -05:00
parent fc5399a67d
commit afb026ebea

View file

@ -22,10 +22,10 @@ import Logger from '@/logger.js';
import { LoggerService } from '@/core/LoggerService.js';
import type { IdentifiableError } from '@/misc/identifiable-error.js';
import { SkRateLimiterService } from '@/server/api/SkRateLimiterService.js';
import { sendRateLimitHeaders } from '@/misc/rate-limit-utils.js';
import { SigninService } from './SigninService.js';
import type { AuthenticationResponseJSON } from '@simplewebauthn/types';
import type { FastifyReply, FastifyRequest } from 'fastify';
import { sendRateLimitHeaders } from '@/misc/rate-limit-utils.js';
@Injectable()
export class SigninWithPasskeyApiService {