https://github.com/ipfs/go-ipfs
Raw File
Tip revision: e0fabd6dbf69624a259dd735065465e09ebb0a61 authored by Jorropo on 21 July 2022, 03:01:03 UTC
Merge pull request #9133 from ipfs/release-v0.14.0
Tip revision: e0fabd6
plugins.go
package config

type Plugins struct {
	Plugins map[string]Plugin
	// TODO: Loader Path? Leaving that out for now due to security concerns.
}

type Plugin struct {
	Disabled bool
	Config   interface{}
}
back to top