From db42d5ed94d94c8eb7351f5726dd6f524c69ee47 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 14:16:14 +0000 Subject: [PATCH] fix: resolve CI/CD test, lint, and type-check failures --- app/api_snapshot/snapshot/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/api_snapshot/snapshot/__init__.py diff --git a/app/api_snapshot/snapshot/__init__.py b/app/api_snapshot/snapshot/__init__.py new file mode 100644 index 0000000..2e946ac --- /dev/null +++ b/app/api_snapshot/snapshot/__init__.py @@ -0,0 +1,15 @@ +"""Snapshot management module.""" + +from api_snapshot.snapshot.manager import ( + SNAPSHOT_VERSION, + Snapshot, + SnapshotManager, + SnapshotMetadata, +) + +__all__ = [ + "Snapshot", + "SnapshotMetadata", + "SnapshotManager", + "SNAPSHOT_VERSION" +]