From 2fab03b7cf1a00bc58fad7ebfc8e84a1ea5a5fec Mon Sep 17 00:00:00 2001 From: Sergey Bahmatov Date: Fri, 28 Mar 2025 19:44:13 +0500 Subject: [PATCH] restructure --- __init__.py => pomodoro_bot/__init__.py | 0 bot.py => pomodoro_bot/bot.py | 0 main.py => pomodoro_bot/main.py | 0 models.py => pomodoro_bot/models.py | 0 redis_client.py => pomodoro_bot/redis_client.py | 0 requirements.txt => pomodoro_bot/requirements.txt | 0 time_magager.py => pomodoro_bot/time_magager.py | 0 user_manager.py => pomodoro_bot/user_manager.py | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename __init__.py => pomodoro_bot/__init__.py (100%) rename bot.py => pomodoro_bot/bot.py (100%) rename main.py => pomodoro_bot/main.py (100%) rename models.py => pomodoro_bot/models.py (100%) rename redis_client.py => pomodoro_bot/redis_client.py (100%) rename requirements.txt => pomodoro_bot/requirements.txt (100%) rename time_magager.py => pomodoro_bot/time_magager.py (100%) rename user_manager.py => pomodoro_bot/user_manager.py (100%) diff --git a/__init__.py b/pomodoro_bot/__init__.py similarity index 100% rename from __init__.py rename to pomodoro_bot/__init__.py diff --git a/bot.py b/pomodoro_bot/bot.py similarity index 100% rename from bot.py rename to pomodoro_bot/bot.py diff --git a/main.py b/pomodoro_bot/main.py similarity index 100% rename from main.py rename to pomodoro_bot/main.py diff --git a/models.py b/pomodoro_bot/models.py similarity index 100% rename from models.py rename to pomodoro_bot/models.py diff --git a/redis_client.py b/pomodoro_bot/redis_client.py similarity index 100% rename from redis_client.py rename to pomodoro_bot/redis_client.py diff --git a/requirements.txt b/pomodoro_bot/requirements.txt similarity index 100% rename from requirements.txt rename to pomodoro_bot/requirements.txt diff --git a/time_magager.py b/pomodoro_bot/time_magager.py similarity index 100% rename from time_magager.py rename to pomodoro_bot/time_magager.py diff --git a/user_manager.py b/pomodoro_bot/user_manager.py similarity index 100% rename from user_manager.py rename to pomodoro_bot/user_manager.py