(ctx context.Context, _ string)
| 119 | } |
| 120 | |
| 121 | func (rg *Static) RunPluginContext(ctx context.Context, _ string) Output { |
| 122 | rg.broadcast(NewEventStart(ctx, TypePlugin)) |
| 123 | |
| 124 | out := NewOutput(TypePlugin, WithError(errors.New("plugins not supported in static resource mode"))) |
| 125 | |
| 126 | rg.broadcast(NewEventEnd(ctx, out)) |
| 127 | |
| 128 | return out |
| 129 | } |
| 130 | |
| 131 | func (rg *Static) GetRules() []*rule.Rule { |
| 132 | return nil |
no test coverage detected