Initial project

This commit is contained in:
Cody
2026-03-06 15:05:53 +08:00
parent 977b627b15
commit bf9e099747
1180 changed files with 50973 additions and 0 deletions
@@ -0,0 +1 @@
class LogAdaptor {}
@@ -0,0 +1 @@
class LogConfig {}
@@ -0,0 +1 @@
class ImLogSdk {}
@@ -0,0 +1 @@
class LogRecord {}
@@ -0,0 +1 @@
class ConsolePrinter {}
@@ -0,0 +1 @@
class FilePrinter {}
@@ -0,0 +1,10 @@
class LogPrinter {
LogPrinter._();
static LogPrinter? _instance;
static LogPrinter get instance {
_instance ??= LogPrinter._();
return _instance!;
}
}
@@ -0,0 +1 @@
class NativePrinter {}