diff options
Diffstat (limited to 'Types/Remote.hs')
-rw-r--r-- | Types/Remote.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Types/Remote.hs b/Types/Remote.hs index 05763e4d3..b8c603c65 100644 --- a/Types/Remote.hs +++ b/Types/Remote.hs @@ -17,6 +17,7 @@ import Types.Key import Types.UUID import Types.Meters import Types.GitConfig +import Config.Cost type RemoteConfigKey = String type RemoteConfig = M.Map RemoteConfigKey String @@ -46,7 +47,7 @@ data RemoteA a = Remote { -- each Remote has a human visible name name :: String, -- Remotes have a use cost; higher is more expensive - cost :: Int, + cost :: Cost, -- Transfers a key to the remote. storeKey :: Key -> AssociatedFile -> MeterUpdate -> a Bool, -- retrieves a key's contents to a file |