diff options
Diffstat (limited to 'Command/Schedule.hs')
-rw-r--r-- | Command/Schedule.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Command/Schedule.hs b/Command/Schedule.hs index 723ade65b..266208f9a 100644 --- a/Command/Schedule.hs +++ b/Command/Schedule.hs @@ -18,10 +18,11 @@ import Types.Messages import qualified Data.Set as S cmd :: Command -cmd = command "schedule" (paramPair paramRemote (paramOptional paramExpression)) seek - SectionSetup "get or set scheduled jobs" +cmd = command "schedule" SectionSetup "get or set scheduled jobs" + (paramPair paramRemote (paramOptional paramExpression)) + (withParams seek) -seek :: CommandSeek +seek :: CmdParams -> CommandSeek seek = withWords start start :: [String] -> CommandStart |