mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 01:27:38 +00:00
7 lines
93 B
Go
7 lines
93 B
Go
package metrics
|
|
|
|
type ValueGetter interface {
|
|
GetValue() float64
|
|
GetValueUint64() uint64
|
|
}
|