🎨 Support one-click enable/disable of all downloaded plugins https://github.com/siyuan-note/siyuan/issues/8523

This commit is contained in:
Daniel 2023-06-23 22:47:44 +08:00
parent 1a3c0e7f42
commit 41cd90b771
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 4 additions and 71 deletions

View file

@ -18,10 +18,12 @@ package conf
type Bazaar struct {
Trust bool `json:"trust"`
Petal bool `json:"petal"`
}
func NewBazaar() *Bazaar {
return &Bazaar{
Trust: false,
Petal: true,
}
}