* 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
7 lines
118 B
Python
7 lines
118 B
Python
"""Command line interface for osxphotos """
|
|
|
|
from .cli.cli import cli_main
|
|
|
|
if __name__ == "__main__":
|
|
cli_main()
|