Skip to content
Snippets Groups Projects
Commit f59603fc authored by Ulrik Ofstad's avatar Ulrik Ofstad
Browse files

final

parent be067a99
No related branches found
No related tags found
No related merge requests found
import express from 'express'; import express from "express";
import taskRouter from './task-router'; import taskRouter from "./task-router";
/** /**
* Express application. * Express application.
...@@ -9,6 +9,6 @@ const app = express(); ...@@ -9,6 +9,6 @@ const app = express();
app.use(express.json()); app.use(express.json());
// Since API is not compatible with v1, API version is increased to v2 // Since API is not compatible with v1, API version is increased to v2
app.use('/api/v2', taskRouter); app.use("/api/v2", taskRouter);
export default app; export default app;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment