# -*- coding: utf-8 -*-
"""This module defines the command line interface for this app. Use
`python -m <app_name>` to see available commands.
"""


if __name__ == '__main__':
    from . import app
    app.cli()
