refactor: requests

This commit is contained in:
手瓜一十雪
2024-05-15 21:13:41 +08:00
parent cf288a3f73
commit 1a8407a782
2 changed files with 10 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ export function cacheFunc(ttl: number, customKey: string = '') {
return descriptor;
};
}
function isValidOldConfig(config: any) {
export function isValidOldConfig(config: any) {
if (typeof config !== 'object') {
return false;
}
@@ -110,7 +110,7 @@ function isValidOldConfig(config: any) {
}
return true;
}
function migrateConfig(oldConfig: any) {
export function migrateConfig(oldConfig: any) {
const newConfig = {
http: {
enable: oldConfig.enableHttp,