start working on the init procedure
This commit is contained in:
parent
c8fce1110e
commit
210e7b9cc8
@ -91,6 +91,15 @@ attemptToReadOptsFromConfigFile args opts = do
|
|||||||
|
|
||||||
|
|
||||||
runGEval'' :: GEvalOptions -> IO (Maybe MetricValue)
|
runGEval'' :: GEvalOptions -> IO (Maybe MetricValue)
|
||||||
runGEval'' opts = do
|
runGEval'' opts = runGEval''' (geoInit opts) (geoSpec opts)
|
||||||
val <- geval $ geoSpec opts
|
|
||||||
|
runGEval''' :: Bool -> GEvalSpecification -> IO (Maybe MetricValue)
|
||||||
|
runGEval''' True spec = do
|
||||||
|
initChallange spec
|
||||||
|
return Nothing
|
||||||
|
runGEval''' False spec = do
|
||||||
|
val <- geval spec
|
||||||
return $ Just val
|
return $ Just val
|
||||||
|
|
||||||
|
initChallange :: GEvalSpecification -> IO ()
|
||||||
|
initChallange spec = print "will init a challange"
|
||||||
|
Loading…
Reference in New Issue
Block a user