2013-05-09 13:59:33 -07:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import "encoding/gob"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
gob.Register(new(map[string]interface{}))
|
2013-08-09 16:52:59 -07:00
|
|
|
gob.Register(new(map[string]string))
|
2013-06-05 15:16:41 -07:00
|
|
|
gob.Register(make([]interface{}, 0))
|
2013-05-09 13:59:33 -07:00
|
|
|
gob.Register(new(BasicError))
|
|
|
|
}
|