示例#1
0
def main():
    bootstrap()
    display_introduction()
    factory = Router()

    command = None
    while not is_command_exit(command):
        clear_screen()
        command = get_command()
        try:
            factory.execute_command(command)
        except Exception as e:
            print(e)