This commit is contained in:
2025-01-20 15:38:15 +08:00
parent a0b76f1d51
commit b9cde3e874
14 changed files with 161 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
from app.core import config
def main():
"""Main entry point for the application."""
print(f"Welcome to {config.APP_NAME}!")
print(f"Debug mode: {config.DEBUG}")
if __name__ == "__main__":
main()