UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

12 lines (11 loc) • 369 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.requestProvider = void 0; const common_1 = require("@nestjs/common"); const request_constants_1 = require("./request-constants"); const noop = () => { }; exports.requestProvider = { provide: request_constants_1.REQUEST, scope: common_1.Scope.REQUEST, useFactory: noop, };