mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-25 06:14:06 +00:00
10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import { GET } from '@fastgpt/service/common/api/plusRequest';
|
|
import { FastGPTProUrl } from '@fastgpt/service/common/system/constants';
|
|
|
|
export const authTeamBalance = async (teamId: string) => {
|
|
if (FastGPTProUrl) {
|
|
return GET('/support/permission/authBalance', { teamId });
|
|
}
|
|
return true;
|
|
};
|