Skip to content

Commit 4c06da4

Browse files
archeossgithub-actions[bot]
authored andcommitted
Autogenerate API
1 parent aafee0d commit 4c06da4

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

api/openapi.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"openapi": "3.0.3",
3+
"info": {
4+
"title": "backend",
5+
"description": "Bob Management GUI: Backend",
6+
"contact": {
7+
"name": "Romanov Simeon [email protected]"
8+
},
9+
"license": {
10+
"name": ""
11+
},
12+
"version": "0.0.0"
13+
},
14+
"paths": {
15+
"/": {
16+
"get": {
17+
"tags": [
18+
"crate"
19+
],
20+
"operationId": "root",
21+
"responses": {
22+
"200": {
23+
"description": "Hello Bob!"
24+
}
25+
}
26+
}
27+
}
28+
},
29+
"tags": [
30+
{
31+
"name": "bob",
32+
"description": "BOB management API"
33+
}
34+
]
35+
}

api/openapi.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
openapi: 3.0.3
2+
info:
3+
title: backend
4+
description: 'Bob Management GUI: Backend'
5+
contact:
6+
name: Romanov Simeon [email protected]
7+
license:
8+
name: ''
9+
version: 0.0.0
10+
paths:
11+
/:
12+
get:
13+
tags:
14+
- crate
15+
operationId: root
16+
responses:
17+
'200':
18+
description: Hello Bob!
19+
tags:
20+
- name: bob
21+
description: BOB management API

0 commit comments

Comments
 (0)