Update dependencies

This commit is contained in:
problematicconsumer
2023-09-05 19:00:24 +03:30
parent 9a8b25076f
commit 611f2950e3
3 changed files with 30 additions and 44 deletions

View File

@@ -10,6 +10,14 @@ func (csh *CommandServerHandler) ServiceReload() error {
return nil
}
func (csh *CommandServerHandler) GetSystemProxyStatus() *libbox.SystemProxyStatus {
return &libbox.SystemProxyStatus{Available: true, Enabled: false}
}
func (csh *CommandServerHandler) SetSystemProxyEnabled(isEnabled bool) error {
return nil
}
func startCommandServer() error {
commandServer = libbox.NewCommandServer(&CommandServerHandler{}, 300)
return commandServer.Start()