7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import callAPI from "../caller/config";
|
|
|
|
export async function loginUser(data: any) {
|
|
return await callAPI.post("/auth/login", data).then((res) => res.data);
|
|
}
|
|
|