mirror of
https://github.com/prometheus/prometheus
synced 2025-01-27 09:53:57 +00:00
20 lines
356 B
Go
20 lines
356 B
Go
package main
|
|
|
|
import (
|
|
"code.google.com/p/goprotobuf/proto"
|
|
)
|
|
|
|
type ProtocolBufferEncoder struct {
|
|
message proto.Message
|
|
}
|
|
|
|
func (p *ProtocolBufferEncoder) Encode() ([]byte, error) {
|
|
return proto.Marshal(p.message)
|
|
}
|
|
|
|
func NewProtocolBufferEncoder(message proto.Message) *ProtocolBufferEncoder {
|
|
return &ProtocolBufferEncoder{
|
|
message: message,
|
|
}
|
|
}
|