REQUEST: POST /?moduleId=<STRING>
action=start
rate=<INT>
RESPONSE: 200-201
(success)
{
status: "game",
dice: <INT>,
take: false,
money: <INT>
}
RESPONSE: 500
(fail)
REQUEST: POST /?moduleId=<STRING>
action=bet
bet=<up|down>
RESPONSE: 200-201
(success)
{
status: "game",
dice: <INT>,
gift: <true|false>,
take: <true|false>,
money: <INT>
}
RESPONSE: 500
(fail)
REQUEST: POST /?moduleId=<STRING>
action=take
RESPONSE: 200-201
(success)
{
status: "finish",
money: <INT>
}
RESPONSE: 500
(fail)
REQUEST: POST /?moduleId=<STRING>
action=bet
bet=<up|down>
RESPONSE: 200-201
(success)
{
status: "finish",
money: <NULL|INT>
}
RESPONSE: 500
(fail)