mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
6 lines
67 B
Go
6 lines
67 B
Go
|
package main
|
||
|
|
||
|
type Encoder interface {
|
||
|
Encode() ([]byte, error)
|
||
|
}
|