(guildId: string, id: number)
| 164 | } |
| 165 | |
| 166 | async delScript(guildId: string, id: number): Promise<ApiResult<EmptyResponse>> { |
| 167 | return await this.delete(`/api/guilds/${guildId}/scripts/${id}`); |
| 168 | } |
| 169 | |
| 170 | async reloadGuildVm(guildId: string): Promise<ApiResult<EmptyResponse>> { |
| 171 | return await this.post(`/api/guilds/${guildId}/reload_vm`); |
no test coverage detected