help plugin, working on plugin api

This commit is contained in:
Syfaro 2015-06-25 14:20:02 -05:00
parent a7b8af6adb
commit 567a37868d
4 changed files with 99 additions and 54 deletions

View file

@ -5,8 +5,10 @@ import (
)
type ApiResponse struct {
Ok bool `json:"ok"`
Result json.RawMessage `json:"result"`
Ok bool `json:"ok"`
Result json.RawMessage `json:"result"`
ErrorCode int `json:"error_code"`
Description string `json:"description"`
}
type Update struct {