https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 0f1181d23218fe2d8263eb1eab9c415ff5ea57c0 authored by galargh on 06 March 2023, 12:30:18 UTC
chore: update version
Tip revision: 0f1181d
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