Files
NebulaLauncher/Nebula.Shared/Services/Logging/ILogger.cs
2025-01-05 17:05:23 +03:00

6 lines
139 B
C#

namespace Nebula.Shared.Services.Logging;
public interface ILogger
{
public void Log(LoggerCategory loggerCategory, string message);
}