Reorganize project structure

This commit is contained in:
Stone_Red
2026-06-19 00:56:46 +02:00
parent 6f58eefb66
commit 95d88f1a8d
84 changed files with 267 additions and 186 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace RemSox.Kernel.Logging;
public interface ILogger
{
void Log(string message, LogSeverity severity);
void LogInfo(string message);
void LogError(string message);
void LogWarning(string message);
IEnumerable<LogEntry> GetLogs(int? count = null);
}