diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-04-18 16:09:09 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-04-18 16:09:09 -0400 |
commit | b1db25514340de8b034ab3e8ebbe0c01fb9f2d1f (patch) | |
tree | 95eb49c99d07703677517792e505d2c861384e94 /Command | |
parent | dc46e86aadc4f17efdaccd8f56f886546b486b9c (diff) |
forgot to add these
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Required.hs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Command/Required.hs b/Command/Required.hs new file mode 100644 index 000000000..3d9c59279 --- /dev/null +++ b/Command/Required.hs @@ -0,0 +1,17 @@ +{- git-annex command + - + - Copyright 2015 Joey Hess <id@joeyh.name> + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Command.Required where + +import Command +import Logs.PreferredContent +import qualified Command.Wanted + +cmd :: [Command] +cmd = Command.Wanted.cmd' "required" "get or set required content expression" + requiredContentMapRaw + requiredContentSet |