From 4fdc815f7067298f6e13fde3c215825dbd74661b Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Aug 2025 15:04:24 +0300 Subject: [PATCH] Add package docstring to core __init__.py Introduces a new __init__.py file for the core package with a descriptive docstring outlining its purpose and contents. --- src/core/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/core/__init__.py diff --git a/src/core/__init__.py b/src/core/__init__.py new file mode 100644 index 0000000..66acd43 --- /dev/null +++ b/src/core/__init__.py @@ -0,0 +1,5 @@ +""" +Core functionality modules for YTSage. + +This package contains the core business logic and utility functions. +"""