Skip to content

Instantly share code, notes, and snippets.

@shapr
Created September 20, 2019 17:44
Show Gist options
  • Save shapr/adacaf9445c3bff4a3eb276e48f9c6e1 to your computer and use it in GitHub Desktop.
Save shapr/adacaf9445c3bff4a3eb276e48f9c6e1 to your computer and use it in GitHub Desktop.
data GithubConfig = GC {
username :: Text
, oauth :: Text
} deriving (Show, Eq, Ord)
githubSpec :: ValueSpec GithubConfig
githubSpec = sectionsSpec "github" $
do username <- reqSection "username" "GitHub username"
oauth <- reqSection "oauth" "OAuth Token for GitHub"
pure GC{..}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment