mirror of
https://github.com/1024-lab/smart-admin.git
synced 2025-09-17 17:32:50 +00:00
8 lines
131 B
JavaScript
8 lines
131 B
JavaScript
import { getAxios } from '@/lib/http';
|
|
|
|
export const userApi = {
|
|
getSession: () => {
|
|
return getAxios('/session/get');
|
|
}
|
|
};
|