Verified Commit 4c5e3183 authored by Jakob Moser's avatar Jakob Moser
Browse files

Trigger command line interface

parent d8707cce
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
from .ui.InteractiveUserInterface import start
import sys

from .ui import InteractiveUserInterface, CommandLineUserInterface


if __name__ == "__main__":
    start()
    if len(sys.argv) > 1:
        CommandLineUserInterface.start()
    else:
        InteractiveUserInterface.start()