8 lines
101 B
Go
8 lines
101 B
Go
|
package metric
|
||
|
|
||
|
import "encoding/gob"
|
||
|
|
||
|
func Init() {
|
||
|
gob.RegisterName("metric.metric", &metric{})
|
||
|
}
|