(p config.Plugin)
| 41 | } |
| 42 | |
| 43 | func pluginProcess(p config.Plugin) *plugin.Codegen_Process { |
| 44 | if p.Process != nil { |
| 45 | return &plugin.Codegen_Process{ |
| 46 | Cmd: p.Process.Cmd, |
| 47 | } |
| 48 | } |
| 49 | return nil |
| 50 | } |
| 51 | |
| 52 | func pluginWASM(p config.Plugin) *plugin.Codegen_WASM { |
| 53 | if p.WASM != nil { |