_mock.ts 223 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8
export default {
  'POST /api/BLOCK_NAME/register': (
    req: any,
    res: { send: (arg0: { status: string; currentAuthority: string }) => void }
  ) => {
    res.send({ status: 'ok', currentAuthority: 'user' });
  },
};