-
Notifications
You must be signed in to change notification settings - Fork 0
/
w.json
51 lines (51 loc) · 1.09 KB
/
w.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[
{
"name": "set_name",
"params": {
"action": "set the team name",
"student_list": [],
"team_name": "whatever"
},
"returns": {
"action": "response",
"response": "jsonstr"
}
},
{
"name": "obtain",
"params": {
"action": "obtain a game with ID",
"class_id": "wordle",
"game_id": "game id,or 00000000 for a new game"
},
"returns": {
"action": "response",
"response": "jsonstr"
}
},
{
"name": "guess",
"params": {
"action": "guess a word for a game",
"class_id": "wordle",
"game_id": "game id",
"my_guess" : "abcde"
},
"returns": {
"action": "response",
"response": {}
}
},
{
"name": "submit",
"params": {
"action": "submit the game id with team name for scores",
"game_id": "game id",
"team_name" : "whatever"
},
"returns": {
"action": "response",
"response": {}
}
}
]