diff options
author | Joey Hess <joey@kitenet.net> | 2012-11-17 15:30:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-11-17 15:30:11 -0400 |
commit | 054326d503645aed94d3e69caa473237e8d47bef (patch) | |
tree | 4db185036af28a9999fffe4f468e381ba03330c4 /Remote/S3.hs | |
parent | 687094bc16eb7d9244c61c455f66082544fcbd03 (diff) |
webapp: support box.com
Diffstat (limited to 'Remote/S3.hs')
-rw-r--r-- | Remote/S3.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Remote/S3.hs b/Remote/S3.hs index f7dbf813c..93620dfd0 100644 --- a/Remote/S3.hs +++ b/Remote/S3.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Remote.S3 (remote, s3SetCredsEnv) where +module Remote.S3 (remote, setCredsEnv) where import Network.AWS.AWSConnection import Network.AWS.S3Object @@ -276,5 +276,5 @@ s3Creds u = CredPairStorage , credPairRemoteKey = Just "s3creds" } -s3SetCredsEnv :: (String, String) -> IO () -s3SetCredsEnv creds = setEnvCredPair creds $ s3Creds undefined +setCredsEnv :: (String, String) -> IO () +setCredsEnv creds = setEnvCredPair creds $ s3Creds undefined |