VG-Tech-Dojo / vg-1day-2018-06-10

0 stars 1 forks source link

TeamC #125

Open kiridaruma opened 6 years ago

kiridaruma commented 6 years ago

作るもの

ダイスロールができるメッセージアプリ

使うもの

作業フォルダ

./team_c/*

kiridaruma commented 6 years ago

APIのレスポンス型

type apiResponse struct{
    OK bool `json: "ok"`
    Secret bool `json: "secret"`
    Result string `json: "result"`
    Dices []diceFace `json: "dices"`
}

type diceFace struct{
    Face int `json: "face"`
    Value int `json: "value"`
}
adshidtadka commented 6 years ago

型を追加します

kiridaruma commented 6 years ago

③の関数の実装のPRです https://github.com/VG-Tech-Dojo/vg-1day-2018-06-10/pull/143

tnkTaka commented 6 years ago

apiの仕様 https://github.com/ysakasin/bcdice-api/blob/master/docs/api.md#diceroll

APIのエンドポイント https://www.taruki.com/bcdice-api