Skip to content
Snippets Groups Projects
Select Git revision
  • 9c69cea5f826ec81e2904e1be96e4030df1b6617
  • develop default protected
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.22
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
24 results

main.py

Blame
  • main.py 158 B
    """The main module that runs :term:`GSO`."""
    
    from gso import init_cli_app, init_gso_app
    
    app = init_gso_app()
    
    if __name__ == "__main__":
        init_cli_app()