Skip to content

Commit

Permalink
feat: create documentation for user routes
Browse files Browse the repository at this point in the history
  • Loading branch information
masterchief-Dave committed Jul 24, 2024
1 parent 1be333d commit 6704f25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/sms.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Router } from "express";
import { sendSms } from "../controllers/SmsController";
import { authMiddleware } from "../middleware";

const smsRouter = Router();

// smsRouter.post("/send", authMiddleware, sendSms);
smsRouter.post("/send", authMiddleware, sendSms);

export { smsRouter };

0 comments on commit 6704f25

Please sign in to comment.