BuiltinCoderPlugin adapts the engine package to the Plugin interface, providing @coder functionality without requiring an external binary.
| 12 | // BuiltinCoderPlugin adapts the engine package to the Plugin interface, |
| 13 | // providing @coder functionality without requiring an external binary. |
| 14 | type BuiltinCoderPlugin struct { |
| 15 | meta engine.Metadata |
| 16 | schema string |
| 17 | } |
| 18 | |
| 19 | // NewBuiltinCoderPlugin creates a builtin @coder plugin backed by the engine package. |
| 20 | func NewBuiltinCoderPlugin() *BuiltinCoderPlugin { |
nothing calls this directly
no outgoing calls
no test coverage detected