working commit

This commit is contained in:
Олег Бородин
2026-05-06 15:10:19 +02:00
parent eda9b8986b
commit 9540ac05d4
17 changed files with 849 additions and 228 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <expected>
#include <string>
#include <cstring>
#include <uxlogger.hpp>
#include <uxclient.hpp>
int main(int argc, char** argv) {
UxClient client;
auto connectRes = client.Connect("127.0.0.1", 1025);
if (!connectRes) {
uxlogger.Log(connectRes.error());
return 1;
}
auto runRes = client.Run();
if (!runRes) {
uxlogger.Log(runRes.error());
return 1;
}
}