Initial files and some experimenting

This commit is contained in:
2025-07-29 20:52:21 -04:00
parent dffb2efeed
commit 954dc97dbd
29 changed files with 1057 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
openapi: "3.0.3"
info:
title: "Application API"
description: "Application API"
version: "1.0.0"
servers:
- url: "http://0.0.0.0:8080"
paths:
/:
get:
description: "Hello World!"
responses:
"200":
description: "OK"
content:
text/plain:
schema:
type: "string"
examples:
Example#1:
value: "Hello World!"
components:
schemas: { }