attempted to refactor db seed, still needs more updating

This commit is contained in:
Mikayla Dobson
2022-11-26 18:26:32 -06:00
parent 9bd1704da9
commit 9d0c8a8782
22 changed files with 340 additions and 68 deletions

6
server/routes/comment.ts Normal file
View File

@@ -0,0 +1,6 @@
import { Express, Router } from "express"
const router = Router();
export const commentRoute = (app: Express) => {
app.use('/comment', router);
}