mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 01:37:11 +00:00
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
import { apiFetch } from ".";
|
|
import { User } from "../types/user";
|
|
|
|
export const getCurrentUser = async () => {
|
|
return await apiFetch<User>("/me");
|
|
};
|