Skip to content

Commit 0847612

Browse files
committed
address extraneous export
1 parent d7ecaa6 commit 0847612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/routes/user.routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Router } from 'express';
22
import * as UserController from '../controllers/user.controller';
33
import isAuthenticated from '../utils/isAuthenticated';
44

5-
export const router = Router();
5+
const router = Router();
66

77
router.post('/signup', UserController.createUser);
88

0 commit comments

Comments
 (0)