Adding server mode

This commit is contained in:
Steve Pulec 2013-03-05 08:14:43 -05:00
commit a728b2581a
31 changed files with 489 additions and 66 deletions

View file

@ -1,5 +1,10 @@
from .responses import EC2Response
urls = {
"https?://ec2.us-east-1.amazonaws.com/": EC2Response().dispatch,
url_bases = [
"https?://ec2.us-east-1.amazonaws.com",
]
url_paths = {
'{0}/': EC2Response().dispatch,
}