feat: Implement automatisch version API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-12 18:54:24 +01:00
parent 7b6e4aa153
commit c81531cb7a
4 changed files with 29 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import graphQLInstance from '../helpers/graphql-instance.js';
import webhooksRouter from './webhooks.js';
import paddleRouter from './paddle.ee.js';
import healthcheckRouter from './healthcheck.js';
import automatischRouter from './automatisch.js';
const router = Router();
@@ -10,5 +11,6 @@ router.use('/graphql', graphQLInstance);
router.use('/webhooks', webhooksRouter);
router.use('/paddle', paddleRouter);
router.use('/healthcheck', healthcheckRouter);
router.use('/api/v1/automatisch', automatischRouter);
export default router;