Files
DataRush/services/frontend/src/shared/api/user.ts
T
2025-03-01 20:24:23 +03:00

7 lines
154 B
TypeScript

import { apiFetch } from ".";
import { User } from "../types/user";
export const getCurrentUser = async () => {
return await apiFetch<User>("/me");
};