2010-10-27 20:53:54 +00:00
|
|
|
{- git-annex abstract data types
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
2010-10-14 07:18:11 +00:00
|
|
|
|
|
|
|
module Types (
|
|
|
|
Annex,
|
2010-10-15 00:05:04 +00:00
|
|
|
Backend,
|
2011-03-16 01:34:13 +00:00
|
|
|
Key
|
2010-10-14 07:18:11 +00:00
|
|
|
) where
|
|
|
|
|
2011-01-26 01:49:04 +00:00
|
|
|
import Annex
|
2011-06-02 01:56:04 +00:00
|
|
|
import Types.Backend
|
|
|
|
import Types.Key
|