fix: 提高兼容性

This commit is contained in:
手瓜一十雪
2024-08-20 20:26:49 +08:00
parent e84e22e7b5
commit d91d03a8f3
5 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
export class GetCSRF extends BaseAction<any, any> {
actionName = ActionName.GetCSRF;
async _handle(payload: any) {
return {
token: "",
};
}
}