mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-04-20 02:19:56 -04:00
26 lines
722 B
TypeScript
26 lines
722 B
TypeScript
// @ts-ignore
|
|
/* eslint-disable */
|
|
import request from '@/utils/request';
|
|
|
|
/** Get subscribe group list GET /v1/public/subscribe/group/list */
|
|
export async function querySubscribeGroupList(options?: { [key: string]: any }) {
|
|
return request<API.Response & { data?: API.QuerySubscribeGroupListResponse }>(
|
|
'/v1/public/subscribe/group/list',
|
|
{
|
|
method: 'GET',
|
|
...(options || {}),
|
|
},
|
|
);
|
|
}
|
|
|
|
/** Get subscribe list GET /v1/public/subscribe/list */
|
|
export async function querySubscribeList(options?: { [key: string]: any }) {
|
|
return request<API.Response & { data?: API.QuerySubscribeListResponse }>(
|
|
'/v1/public/subscribe/list',
|
|
{
|
|
method: 'GET',
|
|
...(options || {}),
|
|
},
|
|
);
|
|
}
|