mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-16 21:30:27 +00:00
9 lines
115 B
Go
9 lines
115 B
Go
package settings
|
|
|
|
type SystemProxy interface {
|
|
IsEnabled() bool
|
|
Enable() error
|
|
Disable() error
|
|
Close() error
|
|
}
|