Fix CI/CD: Add Gitea Actions workflow and fix linting issues
Some checks failed
CI / test (push) Failing after 13s

This commit is contained in:
Developer
2026-02-05 09:02:49 +00:00
commit d8325c4be2
111 changed files with 19657 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""Utility modules for the Auto README Generator."""
from .file_scanner import FileScanner, scan_project
from .path_utils import PathUtils, normalize_path
from .git_utils import GitUtils, get_git_info
__all__ = [
"FileScanner",
"scan_project",
"PathUtils",
"normalize_path",
"GitUtils",
"get_git_info",
]