🎨 refractor(genshin): 将 genshin 插件转移到 core 目录下

This commit is contained in:
BTMuli
2023-04-10 00:16:45 +08:00
parent a238dc5eed
commit d7494739f6
19 changed files with 337 additions and 302 deletions

View File

@@ -0,0 +1,17 @@
/**
* @file core request TGRequest.ts
* @description 应用用到的请求函数
* @author BTMuli<bt-muli@outlook.com>
* @since Alpha v0.1.2
*/
import { getAnnoList, getAnnoContent } from "./getAnno";
const TGRequest = {
Anno: {
getList: getAnnoList,
getContent: getAnnoContent,
},
};
export default TGRequest;