# Generated with protoc-gen-openapi # https://github.com/google/gnostic/tree/master/cmd/protoc-gen-openapi openapi: 3.0.3 info: title: Fetch Backend CTF version: 0.0.1 paths: /token.v1.TokenService/GetToken: post: tags: - TokenService operationId: TokenService_GetToken requestBody: content: application/json: {} required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/GetTokenResponse' /token.v1.TokenService/StreamToken: post: tags: - TokenService operationId: TokenService_StreamToken requestBody: content: application/json: {} required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/StreamTokenResponse' components: schemas: GetTokenResponse: type: object properties: token: type: string StreamTokenResponse: type: object properties: message: type: string tags: - name: TokenService