20 lines
216 B
YAML
20 lines
216 B
YAML
|
openapi: "3.1.0"
|
||
|
|
||
|
info:
|
||
|
version: 1.0.0
|
||
|
title: nQuest
|
||
|
|
||
|
servers:
|
||
|
- url: /api
|
||
|
|
||
|
|
||
|
components:
|
||
|
securitySchemes:
|
||
|
cookieAuth:
|
||
|
type: apiKey
|
||
|
in: cookie
|
||
|
name: session
|
||
|
|
||
|
security:
|
||
|
- cookieAuth: []
|