Skip to content

Commit

Permalink
Updated File Names
Browse files Browse the repository at this point in the history
  • Loading branch information
Kavipatel0 committed Sep 10, 2024
1 parent f822394 commit 9d3afbb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import Mailgun from "mailgun.js";
import { messagesCollection } from "./utilities/firebaseInit";
import { calculateDistanceInMeters } from "./actions/calculateDistance";
import { scheduleCron } from "./actions/deleter";
import mainRouter from "./routes";
import mainRouter from "./routes/mainRouteHandler";

const { createServer } = require("http");
const { Server } = require("socket.io");
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Router } from "express";
import authRouter from "./auth";
import userRouter from "./user";
import authRouter from "./auth/authRouteHandler";
import userRouter from "./user/userRouteHandler";
import errorRouter from "./error/error";

const mainRouter = Router();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Router } from "express";
import createUserRoute from "./create";
import deleteUserRoute from "./delete";
import updateUserRoute from "./update";
import nearbyUserRoute from "./getNearby";
import nearbyUserRoute from "./nearby";

const userRouter = Router();

Expand Down

0 comments on commit 9d3afbb

Please sign in to comment.