https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 89c029dc4c5df9810bbfd5fd5f0a22322f51f44a authored by Piotr Galar on 03 July 2023, 06:29:00 UTC
ci: disable js-rv-js tests in interop (#10007)
Tip revision: 89c029d
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