fix location

This commit is contained in:
Karol Wypchlo 2021-09-17 16:22:37 +02:00
parent 96491be246
commit 6588172e66
No known key found for this signature in database
GPG Key ID: C92C016317A964D0
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ require("dotenv").config();
app.use(cors()); app.use(cors());
// create the routes // create the routes
app.get("/migrate/:cid", (req: Request, res: Response) => { app.get("/ipfs/migrate/:cid", (req: Request, res: Response) => {
return handleGetLink(req, res, recordsDB); return handleGetLink(req, res, recordsDB);
}); });