mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-05 11:31:16 +00:00
12 lines
252 B
Go
12 lines
252 B
Go
package commented
|
|
|
|
import "github.com/go-kit/kit/metrics"
|
|
|
|
//go:generate go run ../../../../scripts/metricsgen -struct=Metrics
|
|
|
|
type Metrics struct {
|
|
// Height of the chain.
|
|
// We expect multi-line comments to parse correctly.
|
|
Field metrics.Gauge
|
|
}
|