summaryrefslogtreecommitdiff
path: root/Command/Fsck.hs
blob: a72d753fa0164cb027f8699b189f874f919eb616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.Fsck where

import Command
import qualified Command.FsckFile
import qualified Command.Unused

seek :: [SubCmdSeek]
seek = [withNothing Command.Unused.start, withAll withFilesInGit Command.FsckFile.start]