Improve system proxy API

This commit is contained in:
世界
2023-09-03 14:29:37 +08:00
parent c79b4509bd
commit 7ed699757d
7 changed files with 293 additions and 161 deletions

View File

@@ -0,0 +1,7 @@
package settings
type SystemProxy interface {
IsEnabled() bool
Enable() error
Disable() error
}