UNPKG

@uisap/core

Version:

A modular Fastify-based framework inspired by Laravel

9 lines 260 B
export class CoreService { constructor(app) { this.app = app; this.fastify = app.fastify; this.logger = app.fastify?.logger || console; this.config = app.config || {}; this.db = this.app.container.make("sequelize"); } }