#!/usr/bin/env python

from example import app


def run_app():
    app.main()


if __name__ == "__main__":
    run_app()
