()
| 24 | ) |
| 25 | |
| 26 | func init() { |
| 27 | // Register types that will be sent over RPC |
| 28 | gob.Register(PluginExecConfig{}) |
| 29 | gob.Register(PluginExecResult{}) |
| 30 | gob.Register(PluginMetadata{}) |
| 31 | gob.Register(PluginCommandInfo{}) |
| 32 | } |
| 33 | |
| 34 | // Handshake is a common handshake that is shared by CLI plugins and the host. |
| 35 | var Handshake = plugin.HandshakeConfig{ |