Skip to content

Instantly share code, notes, and snippets.

@dminuoso

dminuoso/f.hs Secret

Created December 5, 2022 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dminuoso/fa1d35ce709c98749b6bc82b75a9d05a to your computer and use it in GitHub Desktop.
Save dminuoso/fa1d35ce709c98749b6bc82b75a9d05a to your computer and use it in GitHub Desktop.
{-# LANGUAGE ApplicativeDo #-}
{-# LANGUAGE RecordWildCards #-}
instance FromJSON MyFlag where
parseJSON (Object v) = do
code <- v .: "code"
name <- v .: "name"
full_name <- v .: "full_name"
relative_height <- v .: "relative_height"
relative_width <- v .: "relative_width"
pure MyFlag{..}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment