9 lines
126 B
Go
9 lines
126 B
Go
|
package rpc
|
||
|
|
||
|
import "encoding/gob"
|
||
|
|
||
|
func init() {
|
||
|
gob.Register(new(map[string]interface{}))
|
||
|
gob.Register(new(BasicError))
|
||
|
}
|