"""Web application module. Provides methods for creating and configuring aiohhtp web application. """ import aiohttp import ickapi def create_app(): """Create a web app to be passed to a server.""" app = aiohttp.web.Application() ickapi.setup_routes(app) return app