mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 21:49:04 +08:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export class GetCSRF extends BaseAction<any, any> {
|
|
actionName = ActionName.GetCSRF;
|
|
|
|
async _handle(payload: any) {
|
|
return {
|
|
token: '',
|
|
};
|
|
}
|
|
}
|