sing-box/common/settings/system_proxy.go

8 lines
100 B
Go
Raw Normal View History

2023-09-03 06:29:37 +00:00
package settings
type SystemProxy interface {
IsEnabled() bool
Enable() error
Disable() error
}