add plugin scope to settings.

This commit is contained in:
Miroslav Šedivý 2023-04-28 22:53:41 +02:00
parent 52b4cbcbdf
commit a75ae187b4

View File

@ -33,6 +33,9 @@ type Settings struct {
ImplicitHosting bool `json:"implicit_hosting"`
InactiveCursors bool `json:"inactive_cursors"`
MercifulReconnect bool `json:"merciful_reconnect"`
// plugin scope
Plugins map[string]any `json:"plugins"`
}
type Session interface {