#!/usr/bin/env python3
#**************************************************************************
# Copyright (C) 2017-2021 Thomas Touhey <thomas@touhey.fr>
# This file is part of the pyfingerd project, which is MIT-licensed.
#**************************************************************************
""" Run pyfingerd without calling the `pyfingerd` module directly. """

from pyfingerd.cli import cli as _cli

__all__ = []

if __name__ == '__main__':
    _cli()

# End of file.
