Add mock file audit backend
This commit is contained in:
parent
a3129afa42
commit
afa15cd1b9
9 changed files with 353 additions and 1 deletions
6
audit_core/__init__.py
Normal file
6
audit_core/__init__.py
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue