1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +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 Prelude
import Prologue import Prologue
data JSONMetaRepo = JSONMetaRepo { repoPath :: !String data JSONMetaRepo = JSONMetaRepo { repoUrl :: !String
, repoUrl :: !String
, language :: !String , language :: !String
, testCaseDirName :: !String
, fileExt :: !String , fileExt :: !String
, syntaxes :: ![JSONMetaSyntax] , syntaxes :: ![JSONMetaSyntax]
} deriving (Show, Generic, FromJSON) } deriving (Show, Generic, FromJSON)