fix: resolve CI/CD test, lint, and type-check failures
This commit is contained in:
15
app/api_snapshot/__init__.py
Normal file
15
app/api_snapshot/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
"""API Snapshot CLI - Record HTTP API traffic and generate local mock servers."""
|
||||||
|
|
||||||
|
__version__ = "0.1.0"
|
||||||
|
|
||||||
|
from api_snapshot.cli import main
|
||||||
|
from api_snapshot.recorder import RecordingSession, record_session
|
||||||
|
from api_snapshot.snapshot import SnapshotManager
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"__version__",
|
||||||
|
"main",
|
||||||
|
"RecordingSession",
|
||||||
|
"record_session",
|
||||||
|
"SnapshotManager"
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user