10 lines
157 B
Go
10 lines
157 B
Go
|
//go:build !goplugin
|
||
|
|
||
|
package goplugin
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func LoadExternalPlugins(_ string) error {
|
||
|
return errors.New("go plugin support is not enabled")
|
||
|
}
|