mirror of
https://github.com/slackhq/nebula.git
synced 2024-11-10 09:12:39 +08:00
18 lines
258 B
Go
18 lines
258 B
Go
package nebula
|
|
|
|
/*
|
|
|
|
import (
|
|
proto "github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
func HandleMetaProto(p []byte) {
|
|
m := &NebulaMeta{}
|
|
err := proto.Unmarshal(p, m)
|
|
if err != nil {
|
|
l.Debugf("problem unmarshaling meta message: %s", err)
|
|
}
|
|
//fmt.Println(m)
|
|
}
|
|
|
|
*/
|