mirror of
https://github.com/prometheus/prometheus
synced 2025-01-12 09:40:00 +00:00
6 lines
69 B
Go
6 lines
69 B
Go
package coding
|
|
|
|
type Encoder interface {
|
|
Encode() ([]byte, error)
|
|
}
|