기본 구조 세팅 중

This commit is contained in:
logonkhi
2025-12-11 21:05:44 +09:00
parent e4d28ccf42
commit 0e51ffc87f
304 changed files with 11281 additions and 228 deletions

View File

@@ -1,7 +1,7 @@
#nullable enable
using Cysharp.Threading.Tasks;
using FactorySample.Config;
using Factory.Config;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
@@ -147,7 +147,7 @@ namespace UVC.Data.Mqtt
/// <param name="port">MQTT 브로커의 포트 번호, 기본값은 1883입니다.</param>
public void SetDomainPort(string domain, int port)
{
this.domain = string.IsNullOrEmpty(domain) ? Constants.MQTT_DOMAIN : domain;
this.domain = string.IsNullOrEmpty(domain) ? FactoryConstants.MQTT_DOMAIN : domain;
this.port = port;
WebSocketPort = port;