// @ts-ignore /* eslint-disable */ import { request } from 'umi'; /** 此处后端没有提供注释 GET /site/all */ export async function sitecontrollerAll(options?: { [key: string]: any }) { return request('/site/all', { method: 'GET', ...(options || {}), }); }