UNPKG

@uisap/core

Version:

A modular Fastify-based framework inspired by Laravel

12 lines (10 loc) 284 B
let fastifyInstance; export function setFastify(fastify) { fastifyInstance = fastify; } export function app(key) { if (!fastifyInstance || !fastifyInstance.container) { throw new Error('Fastify container başlatılmadı'); } return fastifyInstance.container.make(key); }