Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sodic committed Sep 6, 2024
1 parent 02dc4d8 commit 93a0eee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions waspc/src/Wasp/AppSpec/Job.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data Job = Job
}
deriving (Show, Eq, Data)

instance IsDecl Job
instance IsDecl Job

data JobExecutor = PgBoss
deriving (Show, Eq, Data, Ord, Enum, Bounded)
Expand All @@ -50,7 +50,7 @@ data Schedule = Schedule
-- These are optional executor-specific JSON options we pass
-- directly through to the executor when submitting jobs.
data ExecutorOptions = ExecutorOptions
{ pgBoss :: Maybe JSON,
{ pgBoss :: Maybe JSON
}
deriving (Show, Eq, Data)

Expand Down

0 comments on commit 93a0eee

Please sign in to comment.