style: reformat

This commit is contained in:
student_2333
2024-04-30 11:24:33 +08:00
parent bb0fcd8614
commit f38e544815
133 changed files with 7148 additions and 6954 deletions

View File

@@ -1,16 +1,15 @@
import {OB11User} from '../../types';
import {OB11Constructor} from "../../constructor";
import {friends} from "../../../common/data";
import BaseAction from "../BaseAction";
import {ActionName} from "../types";
import { OB11User } from '../../types'
import { OB11Constructor } from '../../constructor'
import { friends } from '../../../common/data'
import BaseAction from '../BaseAction'
import { ActionName } from '../types'
class GetFriendList extends BaseAction<null, OB11User[]> {
actionName = ActionName.GetFriendList
actionName = ActionName.GetFriendList
protected async _handle(payload: null) {
return OB11Constructor.friends(friends);
}
protected async _handle(payload: null) {
return OB11Constructor.friends(friends)
}
}
export default GetFriendList
export default GetFriendList