mirror of
https://github.com/eosswedenorg/antelope-api-healthcheck
synced 2026-06-18 05:00:03 +02:00
11 lines
240 B
Go
11 lines
240 B
Go
|
|
package eosapi;
|
|
|
|
import "time";
|
|
|
|
// get_info format (not all fields).
|
|
type Info struct {
|
|
ServerVersion string `json:"server_version"`
|
|
HeadBlockNum int64 `json:"head_block_num"`
|
|
HeadBlockTime time.Time `json:"head_block_time"`
|
|
}
|