mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-21 12:56:39 +08:00
8 lines
131 B
JavaScript
8 lines
131 B
JavaScript
import { getAxios } from '@/lib/http';
|
|
|
|
export const userApi = {
|
|
getSession: () => {
|
|
return getAxios('/session/get');
|
|
}
|
|
};
|