Issue #42: implement Go client session values errors and CLI

This commit is contained in:
Joseph Doherty
2026-04-26 20:09:58 -04:00
parent b275eedb44
commit 8793011838
13 changed files with 1791 additions and 24 deletions
+6
View File
@@ -0,0 +1,6 @@
package mxgateway
// StatusSucceeded reports whether an MXSTATUS_PROXY entry represents success.
func StatusSucceeded(status *MxStatusProxy) bool {
return status == nil || status.GetSuccess() != 0
}