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,22 @@
const service = require('../services/profile.service')
const update = async (req, res) => {
const response = await service.update(req, res)
return response
}
const getProfile = async (req, res) => {
const response = await service.getProfile(req, res)
return response
}
const getOverview = async (req, res) => {
const response = await service.getOverview(req, res)
return response
}
module.exports = {
update,
getProfile,
getOverview
}