3 Commits

Author SHA1 Message Date
ac00262e46 readme 2014-11-06 09:46:00 -08:00
2081a41bd2 Merge pull request #3 from ThomasHintz/testing-github-2
Add deprecated message to with-bucket.
2014-07-10 09:34:03 -07:00
Thomas
eb28ee2a96 Add deprecated message to with-bucket. 2014-07-10 09:33:00 -07:00
2 changed files with 10 additions and 1 deletions

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
chicken-scheme-amazon-s3
========================
Amazon S3 access from Chicken Scheme.
This project has been moved to
https://github.com/sethalves/chicken-scheme-amazon-s3.
Use it instead for submitting patches and pull requests instead.

View File

@@ -160,7 +160,8 @@
((with-bucket bucket (func p1 ...))
(func bucket p1 ...))
((with-bucket bucket exp body ...)
(begin (with-bucket bucket exp)
(begin (print "I am deprecated.")
(with-bucket bucket exp)
(with-bucket bucket body ...)))))
(define (list-buckets)