rewrite to zmq push and pull patterns.

file load works, suite can start up
This commit is contained in:
Alex Bezdieniezhnykh
2025-01-23 14:37:13 +02:00
parent ce25ef38b0
commit 82b3b526a7
20 changed files with 243 additions and 208 deletions
@@ -5,6 +5,7 @@ public class SecurityConstants
public const string CONFIG_PATH = "config.json";
public const string DUMMY_DIR = "dummy";
#region ApiConfig
public const string DEFAULT_API_URL = "https://api.azaion.com/";
@@ -16,4 +17,11 @@ public class SecurityConstants
public const string CLAIM_ROLE = "role";
#endregion ApiConfig
#region SocketClient
public const string SOCKET_HOST = "127.0.0.1";
public const int SOCKET_SEND_PORT = 5127;
public const int SOCKET_RECEIVE_PORT = 5128;
#endregion SocketClient
}