master
go 11 lines 214 Bytes
Raw
1 package config
2
3 type Plugins struct {
4 Plugins map[string]Plugin
5 // TODO: Loader Path? Leaving that out for now due to security concerns.
6 }
7
8 type Plugin struct {
9 Disabled bool
10 Config any `json:",omitempty"`
11 }