import callAPI from "@/core/caller"; export async function applicantLogin(nationalCode: string) { return await callAPI .post(`/auth/applicant/login`, nationalCode) .then((res) => res.data); }