Files
maat/Maat.Core/Const.cs
T
2024-04-04 18:51:00 +02:00

30 lines
851 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Maat.Core
{
public class Const
{
// dati conf REDIS Cache
public static readonly string RedisBaseKey = "EgalWare-Maat";
public static readonly string BASE_PATH = Directory.GetCurrentDirectory();
// Configurazioni
public static readonly string JOB_CONF_KEY = $"{RedisBaseKey}:Conf:JobConf";
// REDIS KEY Dati correnti
public static readonly string TASK_LOG_CURR_KEY = $"{RedisBaseKey}:Current:TaskLog";
//// REDIS KEY Dati cache
//public static readonly string DATA_LOG_KEY = $"{RedisBaseKey}:Cache:DataLog";
// REDIS Channels messaggi (verso UI)
public static readonly string TASK_LOG_M_QUEUE = $"MaatTaskLog";
}
}