(e)
| 3696 | }; |
| 3697 | |
| 3698 | function Et(e) { |
| 3699 | return { |
| 3700 | getWxSignInfo: async function() { |
| 3701 | return e.requestJson({ |
| 3702 | url: Bt.wxSign, |
| 3703 | method: "get", |
| 3704 | headers: e.jwtHeaders |
| 3705 | }) |
| 3706 | }, |
| 3707 | getDrawInfo: async function() { |
| 3708 | return e.requestJson({ |
| 3709 | url: Bt.drawInfo, |
| 3710 | method: "get", |
| 3711 | headers: e.jwtHeaders |
| 3712 | }) |
| 3713 | }, |
| 3714 | doDraw: async function() { |
| 3715 | return e.requestJson({ |
| 3716 | url: Bt.draw, |
| 3717 | method: "get", |
| 3718 | headers: e.jwtHeaders |
| 3719 | }) |
| 3720 | }, |
| 3721 | doShake: async function() { |
| 3722 | return e.requestJson({ |
| 3723 | url: Bt.shake, |
| 3724 | method: "post", |
| 3725 | headers: e.jwtHeaders |
| 3726 | }) |
| 3727 | }, |
| 3728 | getCloudGameInfo: async function() { |
| 3729 | return e.requestJson({ |
| 3730 | url: At.info, |
| 3731 | method: "get", |
| 3732 | headers: e.jwtHeaders |
| 3733 | }) |
| 3734 | }, |
| 3735 | inviteCloudGame: async function() { |
| 3736 | return e.requestJson({ |
| 3737 | url: At.invite, |
| 3738 | method: "get", |
| 3739 | headers: e.jwtHeaders |
| 3740 | }) |
| 3741 | }, |
| 3742 | finishCloudGame: async function() { |
| 3743 | return e.requestJson({ |
| 3744 | url: At.finish, |
| 3745 | method: "get", |
| 3746 | headers: e.jwtHeaders |
| 3747 | }) |
| 3748 | }, |
| 3749 | getBackupInfo: async function() { |
| 3750 | return e.requestJson({ |
| 3751 | url: Tt.info, |
| 3752 | method: "get", |
| 3753 | headers: e.jwtHeaders |
| 3754 | }) |
| 3755 | }, |
no test coverage detected