mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-02 06:47:51 +08:00
12 lines
214 B
Go
12 lines
214 B
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 any `json:",omitempty"`
|
|
}
|