mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 06:51:39 -04:00
11 lines
202 B
Go
11 lines
202 B
Go
package rpc
|
|
|
|
import "encoding/gob"
|
|
|
|
func init() {
|
|
gob.Register(new(map[string]interface{}))
|
|
gob.Register(new(map[string]string))
|
|
gob.Register(make([]interface{}, 0))
|
|
gob.Register(new(BasicError))
|
|
}
|