"""Run cola as a Python module.

Usage: python -m cola
"""

from cola import main


def run():
    """Start the command-line interface."""
    main.main()


if __name__ == '__main__':
    run()
