Skip to content

Commit 3d35ed1

Browse files
committed
hello route
1 parent 07da754 commit 3d35ed1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

http-backend/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ const app = express();
77
app.use(express.json())
88
app.use(cors());
99

10+
app.get('/', (req, res) => {
11+
res.send('Hello');
12+
});
13+
1014
app.use('/v1/api/projects',projectRouter)
1115

1216
app.get('/v1/api/commit/:commitId', async (req,res):Promise<any> => {

0 commit comments

Comments
 (0)