2023-11-07 19:39:30 +01:00
|
|
|
openapi: 3.0.0
|
|
|
|
info:
|
|
|
|
title: Card Recognition API
|
|
|
|
version: 1.0.0
|
|
|
|
paths:
|
2023-11-12 17:36:17 +01:00
|
|
|
/cardinthemiddle:
|
2023-11-07 19:39:30 +01:00
|
|
|
get:
|
2023-11-12 17:36:17 +01:00
|
|
|
summary: The Card in the middle
|
2023-11-07 19:39:30 +01:00
|
|
|
responses:
|
|
|
|
'200':
|
2023-11-12 17:36:17 +01:00
|
|
|
description: success
|
|
|
|
/cardinmyhand/{playerid}:
|
2023-11-07 19:39:30 +01:00
|
|
|
get:
|
2023-11-12 17:36:17 +01:00
|
|
|
summary: cards in the hand of the player
|
2023-11-07 19:39:30 +01:00
|
|
|
parameters:
|
|
|
|
- in: path
|
2023-11-12 17:36:17 +01:00
|
|
|
name: playerid
|
2023-11-07 19:39:30 +01:00
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
type: integer
|
|
|
|
responses:
|
|
|
|
'200':
|
2023-11-12 17:36:17 +01:00
|
|
|
description: success
|
2023-11-07 19:39:30 +01:00
|
|
|
'404':
|
2023-11-12 17:36:17 +01:00
|
|
|
description: card not found
|