mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-14 02:20:53 +08:00
26 lines
420 B
TypeScript
26 lines
420 B
TypeScript
export const apiCheck = {
|
|
/**
|
|
* 检测下载器
|
|
*/
|
|
async downloader() {
|
|
const { data } = await axios.get('api/v1/check/downloader');
|
|
return data;
|
|
},
|
|
|
|
/**
|
|
* 检测 RSS
|
|
*/
|
|
async rss() {
|
|
const { data } = await axios.get('api/v1/check/rss');
|
|
return data;
|
|
},
|
|
|
|
/**
|
|
* 检测所有
|
|
*/
|
|
async all() {
|
|
const { data } = await axios.get('api/v1/check');
|
|
return data;
|
|
},
|
|
};
|