9 lines
130 B
Go
9 lines
130 B
Go
|
// +build !go1.8 windows
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
func loadPlugins(path string) error {
|
||
|
// plugins not supported until 1.8
|
||
|
return nil
|
||
|
}
|