|
- import { request } from '@umijs/max';
- // 查询开发环境url
- export function getJupyterUrl(params) {
- return request(`/api/mmp/jupyter/getURL`, {
- method: 'GET',
- params,
- });
- }
-
- // 查询 labelStudio url
- export function getLabelStudioUrl(params) {
- return request(`/api/mmp/labelStudio/getURL`, {
- method: 'GET',
- params,
- });
- }
|