aboutsummaryrefslogtreecommitdiff
path: root/pyfingerd/__main__.py
blob: a9f81508be03ab1f01defe4650028d72f5ca3890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
# *****************************************************************************
# Copyright (C) 2017-2022 Thomas Touhey <thomas@touhey.fr>
# This file is part of the pyfingerd project, which is MIT-licensed.
# *****************************************************************************
""" Main script of the module. """

from .cli import cli as _cli

__all__ = []

if __name__ == '__main__':
    _cli()

# End of file.