#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""Workbench Interactive Shell using IPython"""

from workbench_apps.workbench_cli import workbench_shell

def run():
    work_shell = workbench_shell.WorkbenchShell()
    work_shell.run()

if __name__ == '__main__':
    run()
