initial commit

This commit is contained in:
2025-10-14 11:30:00 +09:00
parent d8d8f363a5
commit 66b33dc752
7 changed files with 682 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
import logging
def setup_logging():
"""
Sets up the logging for the application.
"""
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)