Files
connexion/examples/openapi3/reverseproxy_aiohttp/openapi.yaml
Daniel Grossmann-Kavanagh 2b23b75ce0 add aiohttp reverse proxy example
2019-12-11 17:58:15 -08:00

19 lines
338 B
YAML

openapi: 3.0.0
info:
title: Path-Altering Reverse Proxy Example
version: '1.0'
servers:
- url: /api
paths:
/hello:
get:
summary: say hi
operationId: app.hello
responses:
'200':
description: hello
content:
text/plain:
schema:
type: string