(p config.Plugin)
| 50 | } |
| 51 | |
| 52 | func pluginWASM(p config.Plugin) *plugin.Codegen_WASM { |
| 53 | if p.WASM != nil { |
| 54 | return &plugin.Codegen_WASM{ |
| 55 | Url: p.WASM.URL, |
| 56 | Sha256: p.WASM.SHA256, |
| 57 | } |
| 58 | } |
| 59 | return nil |
| 60 | } |
| 61 | |
| 62 | func pluginCatalog(c *catalog.Catalog) *plugin.Catalog { |
| 63 | var schemas []*plugin.Schema |