| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | package jobmgr |
| 4 | |
| 5 | import ( |
| 6 | "github.com/netdata/netdata/go/plugins/plugin/framework/functions" |
| 7 | ) |
| 8 | |
| 9 | type noop struct{} |
| 10 | |
| 11 | func (n noop) Register(name string, fn func(functions.Function)) {} |
| 12 | func (n noop) Unregister(name string) {} |
| 13 | func (n noop) RegisterPrefix(name, prefix string, reg func(functions.Function)) {} |
| 14 | func (n noop) UnregisterPrefix(name, prefix string) {} |