Improve system proxy API

This commit is contained in:
世界
2023-09-03 14:29:37 +08:00
parent 69499a51a5
commit 5d8af150a7
7 changed files with 295 additions and 162 deletions

View File

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