This commit is contained in:
Joey Hess 2010-10-12 15:52:18 -04:00
parent d257bad93c
commit 759f146d0f
2 changed files with 15 additions and 6 deletions

14
Types.hs Normal file
View file

@ -0,0 +1,14 @@
{- git-annex core data types -}
module Types (
State(..)
) where
import BackendType
import GitRepo
-- git-annex's runtime state
data State = State {
repo :: GitRepo,
backends :: [Backend]
}