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