basic ec2 and s3 working

This commit is contained in:
Steve Pulec 2013-02-18 16:09:40 -05:00
commit 77d6df6531
33 changed files with 561 additions and 1 deletions

6
moto/s3/urls.py Normal file
View file

@ -0,0 +1,6 @@
from .responses import bucket_response, key_response
urls = {
'/$': bucket_response,
'/(.+)': key_response,
}