mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-15 09:48:14 +08:00
23 lines
477 B
TypeScript
23 lines
477 B
TypeScript
/**
|
|
* @file plugins Genshin index.ts
|
|
* @description Genshin plugin index
|
|
* @author BTMuli<bt-muli@outlook.com>
|
|
* @since Alpha v0.1.1
|
|
*/
|
|
|
|
// Announcement
|
|
import { getAnnouncementList, getAnnouncementContent } from "./request/announcements";
|
|
import { getAnnoCards } from "./utils/announcements";
|
|
|
|
const GenshinOper = {
|
|
Announcement: {
|
|
get: {
|
|
list: getAnnouncementList,
|
|
content: getAnnouncementContent,
|
|
},
|
|
card: getAnnoCards,
|
|
},
|
|
};
|
|
|
|
export default GenshinOper;
|