From 80846113b9cd9a545f2dad162f49db8073c1b6fe Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Fri, 11 Dec 2020 10:34:10 +0100 Subject: [PATCH] Fixed build --- IHP/IDE/CodeGen/JobGenerator.hs | 4 ++-- ihp.cabal | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/IHP/IDE/CodeGen/JobGenerator.hs b/IHP/IDE/CodeGen/JobGenerator.hs index 4dda1bf88..998332fcf 100644 --- a/IHP/IDE/CodeGen/JobGenerator.hs +++ b/IHP/IDE/CodeGen/JobGenerator.hs @@ -13,8 +13,8 @@ import qualified Text.Countable as Countable data JobConfig = JobConfig { applicationName :: Text - , tableName :: Text -- | E.g. create_container_jobs - , modelName :: Text -- | E.g. CreateContainerJob + , tableName :: Text -- E.g. create_container_jobs + , modelName :: Text -- E.g. CreateContainerJob } deriving (Eq, Show) buildPlan :: Text -> Text -> IO (Either Text [GeneratorAction]) diff --git a/ihp.cabal b/ihp.cabal index c1f07ae86..f2b73c13a 100644 --- a/ihp.cabal +++ b/ihp.cabal @@ -258,6 +258,11 @@ library IHPFramework , IHP.Version , IHP.Point , Paths_ihp + , IHP.IDE.CodeGen.JobGenerator + , IHP.IDE.CodeGen.View.NewJob + , IHP.Job.Queue + , IHP.Job.Runner + , IHP.Job.Types executable RunDevServer import: shared-properties