소스 검색

add askgame query json instance

master
flavis 6 년 전
부모
커밋
9eb443638a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/Skat/AI/Online.hs

+ 2
- 0
src/Skat/AI/Online.hs 파일 보기

@@ -167,6 +167,8 @@ instance ToJSON Query where
object ["query" .= ("skat" :: String), "cards" .= cards, "bid" .= bid ]
toJSON (CardsQuery cards) =
object ["query" .= ("cards" :: String), "cards" .= cards ]
toJSON (AskGameQuery bid) =
object ["query" .= ("ask_game" :: String), "bid" .= bid]

instance FromJSON ChosenResponse where
parseJSON = withObject "ChosenResponse" $ \v -> ChosenResponse


불러오는 중...
취소
저장