First commit

This commit is contained in:
2026-05-07 15:38:03 +09:00
commit b3806aebb1
9 changed files with 131 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
__version__ = "1.0.0"
# --- custom ---
from custom_lib import my_file_config
from custom_lib import my_logger
from custom_lib import my_uuid
MODULES = [
my_file_config,
my_logger,
my_uuid,
]
def print_versions():
for module in MODULES:
version = getattr(module, "__version__", "unknown")
print(f"[MODULE] {module.__name__} v{version}")
def init():
print(f"Custom_Lib v{__version__}")
print_versions()