Files
XRLib/Assets/Scripts/Factory/Config/FactoryConstants.cs
2025-12-11 21:05:44 +09:00

15 lines
461 B
C#

namespace Factory.Config
{
public static class FactoryConstants
{
public static string API_DOMAIN = "http://localhost:8888";
public static string MQTT_DOMAIN = "localhost";
public static int MQTT_PORT = 1883;
public static string MQTT_DATA_KEY = "data";
/// <summary>
/// MQTT MessagePack 인코딩 사용 여부
/// </summary>
public static bool MQTT_MESSAGEPACK_ENABLED = false;
}
}