working commit

This commit is contained in:
Олег Бородин
2026-05-19 16:58:44 +02:00
parent 99b4f4586e
commit 4bed66d2bb
6 changed files with 29 additions and 45 deletions
+2 -2
View File
@@ -10,12 +10,12 @@ int main(int argc, char** argv) {
UxClient client;
auto connectRes = client.Connect("127.0.0.1", 1025);
if (!connectRes) {
uxlogger.Log(connectRes.error());
uxlogger.Error(connectRes.error());
return 1;
}
auto runRes = client.Run();
if (!runRes) {
uxlogger.Log(runRes.error());
uxlogger.Error(runRes.error());
return 1;
}