From 4df30f20c04e1d2ee4e112c26f1ad0cfab09e69e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 14:16:11 +0000 Subject: [PATCH] fix: resolve CI/CD test, lint, and type-check failures --- app/api_snapshot/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/api_snapshot/__init__.py diff --git a/app/api_snapshot/__init__.py b/app/api_snapshot/__init__.py new file mode 100644 index 0000000..9cf10c0 --- /dev/null +++ b/app/api_snapshot/__init__.py @@ -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" +]