created API For Aplication Absensi

This commit is contained in:
2025-10-14 14:08:11 +07:00
commit 96d206d892
56 changed files with 6533 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const express = require('express');
const router = express.Router();
const apiKey = require('../../middlewares/apiKey')
const controller = require('../controllers/auth.controller')
router.post('/google', apiKey, controller.loginWithGoogle);
module.exports = router;