🚨 fix all linting error

This commit is contained in:
rafiarrafif
2025-06-25 10:14:01 +07:00
parent b0cca586d1
commit 89c4fb79a7
16 changed files with 94 additions and 133 deletions

View File

@ -1,3 +1,4 @@
import { ErrorForwarder } from "../../../helpers/error/instances/forwarder";
import { getAllUserRepo } from "../repositories/getAllUser.repository";
export const getAllUsersService = async () => {
@ -5,6 +6,6 @@ export const getAllUsersService = async () => {
const allUser = await getAllUserRepo();
return allUser;
} catch (error) {
throw error;
ErrorForwarder(error);
}
};