mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
43 lines
2.0 KiB
JavaScript
43 lines
2.0 KiB
JavaScript
"use strict";
|
|
/*
|
|
* @adonisjs/application
|
|
*
|
|
* (c) Harminder Virk <virk@adonisjs.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.rcParser = exports.Application = exports.inject = exports.Registrar = exports.Ioc = void 0;
|
|
var fold_1 = require("@adonisjs/fold");
|
|
Object.defineProperty(exports, "Ioc", { enumerable: true, get: function () { return fold_1.Ioc; } });
|
|
Object.defineProperty(exports, "Registrar", { enumerable: true, get: function () { return fold_1.Registrar; } });
|
|
Object.defineProperty(exports, "inject", { enumerable: true, get: function () { return fold_1.inject; } });
|
|
var Application_1 = require("./src/Application");
|
|
Object.defineProperty(exports, "Application", { enumerable: true, get: function () { return Application_1.Application; } });
|
|
const rcParser = __importStar(require("./src/rcParser"));
|
|
exports.rcParser = rcParser;
|