https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 9f21cf538868ec265cf803c953ec6bb3f8ffbcd4 authored by Henrique Dias on 20 June 2023, 11:13:12 UTC
Merge pull request #9981 from ipfs/release-v0.21.0
Tip revision: 9f21cf5
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