Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
kubo
kubo
/
config
/
plugins.go
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
go
11 lines
214 Bytes
Copy permalink
Copy
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
}