import type { AuthServiceDeps } from "./types";
export function makeCompareUserPasswordHashes(deps: AuthServiceDeps) {
const compareUserPasswordHashes = (a: string, b: string) => {
deps.request.id;
return a === b;
};
return compareUserPasswordHashes;
}