blob: 60eac5d219865ee9955c0f8bd7edb46505cfdcb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{- git-annex assistant
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Assistant where
import Command
import qualified Command.Watch
def :: [Command]
def = [withOptions [Command.Watch.foregroundOption, Command.Watch.stopOption] $
command "assistant" paramNothing seek "automatically handle changes"]
seek :: [CommandSeek]
seek = Command.Watch.mkSeek True
|