11 lines
215 B
Python
11 lines
215 B
Python
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() |