feat: initialize multi-platform Family Organizer application with Flutter frontend and Node.js backend services
This commit is contained in:
12
backend/dist/routes/index.js
vendored
Normal file
12
backend/dist/routes/index.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const express_1 = require("express");
|
||||
const auth_1 = __importDefault(require("./auth"));
|
||||
const shopping_1 = __importDefault(require("./shopping"));
|
||||
const router = (0, express_1.Router)();
|
||||
router.use("/auth", auth_1.default);
|
||||
router.use("/lists", shopping_1.default);
|
||||
exports.default = router;
|
||||
Reference in New Issue
Block a user