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