From a2b48df291c9614fc93bc39e5e2eea2446454cd7 Mon Sep 17 00:00:00 2001 From: Aklivtsov Date: Mon, 1 Dec 2025 03:17:24 +0300 Subject: [PATCH] Fix: corrected names of __init__.py files --- app/api/{init.py => __init__.py} | 0 app/api/v1/{init.py => __init__.py} | 0 app/core/{init.py => __init__.py} | 0 app/db/{init.py => __init__.py} | 0 app/repositories/{init.py => __init__.py} | 0 app/schemas/{init.py => __init__.py} | 0 app/utils/{init.py => __init__.py} | 0 tests/{init.py => __init__.py} | 0 tests/test_v1/{init.py => __init__.py} | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename app/api/{init.py => __init__.py} (100%) rename app/api/v1/{init.py => __init__.py} (100%) rename app/core/{init.py => __init__.py} (100%) rename app/db/{init.py => __init__.py} (100%) rename app/repositories/{init.py => __init__.py} (100%) rename app/schemas/{init.py => __init__.py} (100%) rename app/utils/{init.py => __init__.py} (100%) rename tests/{init.py => __init__.py} (100%) rename tests/test_v1/{init.py => __init__.py} (100%) diff --git a/app/api/init.py b/app/api/__init__.py similarity index 100% rename from app/api/init.py rename to app/api/__init__.py diff --git a/app/api/v1/init.py b/app/api/v1/__init__.py similarity index 100% rename from app/api/v1/init.py rename to app/api/v1/__init__.py diff --git a/app/core/init.py b/app/core/__init__.py similarity index 100% rename from app/core/init.py rename to app/core/__init__.py diff --git a/app/db/init.py b/app/db/__init__.py similarity index 100% rename from app/db/init.py rename to app/db/__init__.py diff --git a/app/repositories/init.py b/app/repositories/__init__.py similarity index 100% rename from app/repositories/init.py rename to app/repositories/__init__.py diff --git a/app/schemas/init.py b/app/schemas/__init__.py similarity index 100% rename from app/schemas/init.py rename to app/schemas/__init__.py diff --git a/app/utils/init.py b/app/utils/__init__.py similarity index 100% rename from app/utils/init.py rename to app/utils/__init__.py diff --git a/tests/init.py b/tests/__init__.py similarity index 100% rename from tests/init.py rename to tests/__init__.py diff --git a/tests/test_v1/init.py b/tests/test_v1/__init__.py similarity index 100% rename from tests/test_v1/init.py rename to tests/test_v1/__init__.py