From 9784dd520a72b775641d649153101f4672139a9e Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 23 Sep 2021 15:22:01 +0200 Subject: Add assignments for dist 3 --- sem7/dist/lec1/openapi.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 sem7/dist/lec1/openapi.yaml (limited to 'sem7/dist/lec1/openapi.yaml') diff --git a/sem7/dist/lec1/openapi.yaml b/sem7/dist/lec1/openapi.yaml new file mode 100644 index 0000000..ab547f0 --- /dev/null +++ b/sem7/dist/lec1/openapi.yaml @@ -0,0 +1,30 @@ +openapi: 3.0.3 +info: + title: open file + version: '1.0' +servers: + - url: 'http://localhost:8080' +paths: + /read/{filename}: + get: + operationId: getFile + responses: + '201': + description: Ok here is the file + content: + 'application/json': + schema: + type: string + '404': + description: File not found + content: + 'application/json': + schema: + type: string + parameters: + - name: filename + in: path + description: Name of file to read + required: true + schema: + type: string -- cgit v1.2.3