This commit is contained in:
2025-08-05 15:48:18 +02:00
parent 7fabb4163a
commit 824c71ef98
20 changed files with 1538 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from lib.core.pathlib.pathlib import get_dir
from lib.core.logger.model import Logger
def new(path: str) -> Logger:
p = get_dir(path=path, create=True)
return Logger(
path=p,
lastlog_time=0
)