#!python

from netnir.cli import Cli


try:
    cli = Cli()
    cli.dispatch()
except KeyboardInterrupt:
    pass
