Files
SPT-Server-Build/Server/Utils/Logging/SimpleTextLogger.cs
T
2025-01-05 02:12:38 +00:00

10 lines
192 B
C#

using Types.Annotations;
using ILogger = Types.Models.Utils.ILogger;
namespace Server.Utils.Logging;
[Injectable(InjectionType.Singleton)]
public class SimpleTextLogger : ILogger
{
}