sing-box/common/settings/system_proxy.go
2023-09-12 13:26:21 +08:00

8 lines
100 B
Go

package settings
type SystemProxy interface {
IsEnabled() bool
Enable() error
Disable() error
}