def enable_cors(app): cors = aiohttp_cors.setup( app, defaults={ "*": aiohttp_cors.ResourceOptions( allow_credentials=True, expose_headers="*", allow_headers="*", allow_methods="*" ) } ) for route in list(app.router.routes()): cors.add(route)
а надо где то писать тип cors.start() или что то такое?
Обсуждают сегодня