#!/usr/bin/env python3

from netnir.cli import Cli


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