From c97b90eeb76e32faede1d1109f893abfbe0e6af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Guid=C3=A9e?= Date: Wed, 6 Dec 2023 13:09:58 -0500 Subject: [PATCH] Delete kernel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Quentin Guidée --- openapi.kernel.dev.yaml | 70 ----------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 openapi.kernel.dev.yaml diff --git a/openapi.kernel.dev.yaml b/openapi.kernel.dev.yaml deleted file mode 100644 index d4a2991..0000000 --- a/openapi.kernel.dev.yaml +++ /dev/null @@ -1,70 +0,0 @@ -openapi: 3.0.0 -info: - title: Vertex Kernel - description: A platform to manage your self-hosted server. - version: 0.0.0 -servers: - - url: http://{ip}:{port-kernel}/api - variables: - ip: - default: localhost - description: The IP address of the kernel. - port-kernel: - default: "6131" - description: The port of the server. -components: - responses: - "200": - description: Success - "201": - description: Created - "204": - description: No content - "304": - description: Not modified - "400": - description: Bad request - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - "401": - description: Unauthorized - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - "404": - description: Resource not found - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - "409": - description: Conflict - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - "422": - description: Unprocessable entity - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - "500": - description: Internal error - content: - application/json: - schema: - $ref: '#/components/schemas/Error' - schemas: - ErrCode: - type: string - Error: - type: object - properties: - code: - $ref: '#/components/schemas/ErrCode' - message: - type: string