mirror of
https://github.com/prometheus/prometheus
synced 2026-04-24 02:56:33 +08:00
6 lines
69 B
Go
6 lines
69 B
Go
package coding
|
|
|
|
type Encoder interface {
|
|
Encode() ([]byte, error)
|
|
}
|