куча говна
All checks were successful
Deploy / deploy (push) Successful in 44s

This commit is contained in:
Никита Круглицкий 2025-10-20 03:17:54 +06:00
parent 1ef0df7afb
commit fe205531e0

View File

@ -1,4 +1,5 @@
import type { FastifyInstance } from 'fastify' import type { FastifyInstance } from 'fastify'
import type { RegisterOptions } from 'fastify/types/register.js'
import bcrypt from 'bcrypt' import bcrypt from 'bcrypt'
import { z } from 'zod' import { z } from 'zod'
import { auth } from '../auth/lucia.ts' import { auth } from '../auth/lucia.ts'
@ -118,3 +119,7 @@ export default function (fastify: FastifyInstance) {
} }
}) })
} }
const autoConfig: RegisterOptions = {
prefix: '/chad',
}