mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-14 10:30:35 +08:00
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
export const apiSearch = {
|
|
async get(keyword: string, site = 'mikan') {
|
|
const { data } = await axios.get('api/v1/search', {
|
|
params: {
|
|
site,
|
|
keyword,
|
|
},
|
|
});
|
|
return data!;
|
|
},
|
|
};
|