mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-10 20:37:50 +00:00
19 lines
338 B
YAML
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
|