Files
osxphotos/osxphotos/__main__.py
Rhet Turnbull 25d6f148be CLI refactor (#642)
* Initial refactoring of cli.py

* Renamed cli_help

* Refactored all cli commands

* Dropped support for 3.7

* Added test for export with --min-size

* Version bump

* Fixed python version
2022-02-26 22:29:19 -08:00

7 lines
118 B
Python

"""Command line interface for osxphotos """
from .cli.cli import cli_main
if __name__ == "__main__":
cli_main()