python-kasa/kasa/cli/__main__.py
Steven B 983aacbc24
Structure cli into a package (#1038)
PR with just the initial structural changes for the cli to be a package.
Subsequent PR will break out `main.py` into modules. Doing it in two
stages ensure that the commit history will be continuous for `cli.py` >
`cli/main.py`
2024-07-04 14:52:01 +02:00

6 lines
57 B
Python

"""Main module."""
from kasa.cli.main import cli
cli()