mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-16 22:57:49 +01:00
13 lines
338 B
Python
13 lines
338 B
Python
from menu_principal import run_menu
|
|
|
|
def main():
|
|
"""Point d'entrée principal de l'application"""
|
|
try:
|
|
run_menu()
|
|
except KeyboardInterrupt:
|
|
print("\nProgramme interrompu par l'utilisateur.")
|
|
except Exception as e:
|
|
print(f"\nUne erreur est survenue: {str(e)}")
|
|
|
|
if __name__ == "__main__":
|
|
main() |