beam/data: Message.Bytes() convenience method

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
Solomon Hykes
2014-04-22 15:50:17 -07:00
parent 99dda11d45
commit 5bcf2a736c
+4
View File
@@ -45,3 +45,7 @@ func (m Message) Del(k string) Message {
func (m Message) String() string {
return string(m)
}
func (m Message) Bytes() []byte {
return []byte(m)
}