Skip to content
Snippets Groups Projects

add gso-run-cli

Closed Mohammad Torkashvand requested to merge feature/NAT-556-add-gso-run-cli into develop
2 files
+ 13
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 8
0
"""The main module that runs :term:`GSO`."""
"""The main module that runs :term:`GSO`."""
 
import os
 
from gso import init_cli_app, init_gso_app
from gso import init_cli_app, init_gso_app
app = init_gso_app()
app = init_gso_app()
 
 
def run_cli():
 
os.chdir(os.path.dirname(os.path.abspath(__file__)))
 
init_cli_app()
 
 
if __name__ == "__main__":
if __name__ == "__main__":
init_cli_app()
init_cli_app()
Loading