"""Route module. All endpoints are added to the router here. """ import ickapi def setup_routes(app): """Add endpoints to a router.""" version = ickapi.VersionView() app.router.add_get('/version', version.get_version)