From 2b0bc0dc122fd46dc445cfaa5fd1b6af209c136a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 14:16:16 +0000 Subject: [PATCH] fix: resolve CI/CD test, lint, and type-check failures --- app/api_snapshot/server/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/api_snapshot/server/__init__.py diff --git a/app/api_snapshot/server/__init__.py b/app/api_snapshot/server/__init__.py new file mode 100644 index 0000000..06ff14e --- /dev/null +++ b/app/api_snapshot/server/__init__.py @@ -0,0 +1,5 @@ +"""Mock server module.""" + +from api_snapshot.server.server import MockServer, create_app_from_snapshot + +__all__ = ["MockServer", "create_app_from_snapshot"]