An attempt at a new low level keybase interface that prevents each command from re-spawning a new keybase instance on low memory systems.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
367 B

package keybase
type RateLimit struct {
Tank string `json:"tank"`
Capacity int `json:"capacity"`
Reset int `json:"reset"`
Gas int `json:"gas"`
}
type KeybaseApiResponse struct {
Result struct {
Message string `json:"message"`
ID int `json:"id"`
RateLimits []RateLimit `json:"ratelimits"`
} `json:"result"`
}