Initial commit

This commit is contained in:
lnljyang
2025-12-30 09:44:46 +08:00
commit 82b8d21506
147 changed files with 39113 additions and 0 deletions

16
api/index.js Normal file
View File

@@ -0,0 +1,16 @@
/**
* url 映射
* @author WangLongFei/Alisdon <920124512@qq.com>
*/
const files = require.context('../api', false, /\.js$/);
const modules = {};
files.keys().forEach(key => {
if (key !== './index.js') {
modules[key.replace(/(\.\/|\.js)/g, '')] = files(key).default;
}
});
export default {
...modules
};