1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Simplify JSONMetaRepo fields

This commit is contained in:
Rick Winfrey 2016-11-01 09:51:54 -05:00
parent e87e54302f
commit d9adbe8783

View File

@ -8,10 +8,8 @@ import Data.HashMap.Strict as HM
import Prelude
import Prologue
data JSONMetaRepo = JSONMetaRepo { repoPath :: !String
, repoUrl :: !String
data JSONMetaRepo = JSONMetaRepo { repoUrl :: !String
, language :: !String
, testCaseDirName :: !String
, fileExt :: !String
, syntaxes :: ![JSONMetaSyntax]
} deriving (Show, Generic, FromJSON)