# The __init__.py file signals to the python interpreter that the # app directory is a package. A package is a special module that # contains other modules. Each file is a module (browser, cli, etc.) # and the "app" package is a module that contains other modules. # The "app" module exports the stuff exposed here. We export # app.init() as a reference to app.config.init() and app.main # as a reference to app.cli.main from .config import init from .cli import main