Add mock file audit backend

This commit is contained in:
2026-06-01 23:44:03 +02:00
parent a3129afa42
commit afa15cd1b9
9 changed files with 353 additions and 1 deletions

6
audit_core/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""Audit Core public interface."""
from audit_core.interface import AuditBackend, AuditEvent
from audit_core.mock_file_backend import MockFileAuditBackend
__all__ = ["AuditBackend", "AuditEvent", "MockFileAuditBackend"]