Files
recipe-manager/server/routes/index.ts
2022-11-17 18:08:31 -06:00

12 lines
290 B
TypeScript

import { Express } from "express"
import { userRoute } from "./users";
export const routes = (app: Express, passport?: any) => {
console.log('routes called');
userRoute(app);
app.get('/hello', (req, res) => {
res.send({ message: "hello from the server!!" });
})
}