aboutsummaryrefslogtreecommitdiff
path: root/pyfingerd/__main__.py
blob: b1dcbcc7679a18d2dd6c4ab54e249961c0d69135 (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.