Colab User
Initial commit: Deploy rasa-engine API server
eab050b
raw
history blame contribute delete
237 Bytes
import { Router, type IRouter } from "express";
import healthRouter from "./health";
import rasaRouter from "./rasa";
const router: IRouter = Router();
router.use(healthRouter);
router.use("/rasa", rasaRouter);
export default router;