module Data.Parsers where import qualified Data.Attoparsec.Text as A space, comma :: A.Parser Char space = A.char ' ' comma = A.char ','