fix: Adds missing backend status command implementations.

This commit is contained in:
Tera << 8 2025-01-06 00:09:14 -05:00
parent 605ad31dd6
commit 93f2f9cbee
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
4 changed files with 45 additions and 0 deletions

View file

@ -5,6 +5,7 @@ import "git.terah.dev/imterah/hermes/backend/commonbackend"
type BackendInterface interface {
StartBackend(arguments []byte) (bool, error)
StopBackend() (bool, error)
GetBackendStatus() (bool, error)
StartProxy(command *commonbackend.AddProxy) (bool, error)
StopProxy(command *commonbackend.RemoveProxy) (bool, error)
GetAllClientConnections() []*commonbackend.ProxyClientConnection