a bit timeout

This commit is contained in:
2022-04-18 21:42:20 +03:00
parent 2e159814e4
commit 544046f43d
14 changed files with 149 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.router = void 0;
const express_1 = require("express");
const auth_1 = require("./auth");
const banner_1 = require("./banner");
exports.router = (0, express_1.Router)();
exports.router.use(banner_1.bannerRouter);
exports.router.use('/auth', auth_1.authRouter);