diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-12 15:52:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-12 15:52:18 -0400 |
commit | 759f146d0fd5857cbbb796367c3dd8c695550b46 (patch) | |
tree | 86efbb534c747c7376e6ff62344a86665ab00995 /Types.hs | |
parent | d257bad93c4ae6f8e6ef6a9c848e63d0f46eb225 (diff) |
update
Diffstat (limited to 'Types.hs')
-rw-r--r-- | Types.hs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Types.hs b/Types.hs new file mode 100644 index 000000000..df9588027 --- /dev/null +++ b/Types.hs @@ -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] +} |