2019-09-26 15:52:58 +02:00
|
|
|
import express from "express";
|
2019-10-06 20:58:13 +02:00
|
|
|
import authRouter from "./auth";
|
|
|
|
import homeRouter from "./home";
|
2019-09-26 15:52:58 +02:00
|
|
|
|
|
|
|
const router = express.Router();
|
|
|
|
|
2019-10-06 20:58:13 +02:00
|
|
|
router.use("/", homeRouter);
|
|
|
|
router.use("/auth", authRouter);
|
2019-09-26 15:52:58 +02:00
|
|
|
|
|
|
|
export default router;
|