From 94ab442a438a694b6315d835866d4ea56f783b0d Mon Sep 17 00:00:00 2001 From: RanolP Date: Sun, 17 Mar 2024 03:18:23 +0900 Subject: [PATCH] chore: also delete old files --- src/openapi.yaml | 2 -- src/paths/problem/class.yaml | 48 ------------------------------------ 2 files changed, 50 deletions(-) delete mode 100644 src/paths/problem/class.yaml diff --git a/src/openapi.yaml b/src/openapi.yaml index abf99ae..577ae07 100644 --- a/src/openapi.yaml +++ b/src/openapi.yaml @@ -34,8 +34,6 @@ paths: responses: "200": description: "TODO" - /problem/class: - $ref: "./paths/problem/class.yaml#/paths/Path" /ranking/tier: $ref: "./paths/ranking/tier.yaml#/paths/Path" /ranking/rival: diff --git a/src/paths/problem/class.yaml b/src/paths/problem/class.yaml deleted file mode 100644 index 6118305..0000000 --- a/src/paths/problem/class.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# yaml-language-server: $schema=https://spec.openapis.org/oas/3.1/schema/2021-05-20 ---- -# for the intellisense -openapi: "3.1.0" -info: { title: "", version: "" } - -paths: - Path: - get: - summary: "CLASS별 문제 수 가져오기" - description: "문제 개수를 문제 CLASS별로 가져옵니다." - tags: - - problem - operationId: getClassProblemCount - - responses: - "200": - description: "서버가 반환에 성공한 경우입니다." - content: - application/json: - schema: - type: "array" - items: - type: "object" - properties: - class: - type: "integer" - format: "int64" - minimum: 1 - maximum: 10 - total: - type: "integer" - format: "int64" - minimum: 0 - description: "이 CLASS에 속한 에센셜이 아닌 문제 수입니다." - example: 36 - essentials: - type: "integer" - format: "in64" - minimum: 0 - description: "이 CLASS에 속한 에센셜 문제 수입니다." - example: 16 - criteria: - type: "integer" - format: "in64" - minimum: 0 - description: "이 CLASS를 취득하기 위한 최소 문제 수입니다." - example: 16