status-go/src/types.go

12 lines
194 B
Go
Raw Normal View History

package main
type AccountInfo struct {
Address string `json:"address"`
PubKey string `json:"pubkey"`
Error string `json:"error"`
}
type JSONError struct {
Error string `json:"error"`
}