aboutsummaryrefslogtreecommitdiff
path: root/Types.hs
blob: df95880274ad97daafb456c9e1f547c1c22a4d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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]
}