v.0.0.9 staging (#229)

This commit is contained in:
Vivian Phung
2024-06-24 19:52:51 -04:00
committed by GitHub
parent e751addcce
commit 94f46f9621
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { Router } from 'express';
const router = Router();
router.get('/version', async (req, res) => {
return res.send({ version: '0.0.8' });
return res.send({ version: '0.0.9' });
});
export default router;