mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-17 00:27:50 +01:00
18 lines
681 B
Python
Executable File
18 lines
681 B
Python
Executable File
from menu_principal import run_menu
|
|
|
|
def main():
|
|
"""Point d'entrée principal de l'application"""
|
|
print("=================================================")
|
|
print(" GESTIONNAIRE DE TICKETS ODOO SIMPLIFIÉ ")
|
|
print("=================================================")
|
|
print("Fonctionnalités:")
|
|
print("1. Afficher la liste des modèles disponibles")
|
|
print("2. Afficher les champs d'un modèle donné")
|
|
print("3. Exporter les informations des champs en JSON")
|
|
print("4. Exporter les tickets d'un projet par étape")
|
|
print("=================================================")
|
|
|
|
run_menu()
|
|
|
|
if __name__ == "__main__":
|
|
main() |