Skip to content

Commit

Permalink
api: add CloudStackManager to the managers dict
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Souza committed Oct 6, 2014
1 parent 093bae5 commit e509ad8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion feaas/api.py
Expand Up @@ -9,13 +9,14 @@
from flask import Flask, Response, request

from . import auth, plugin, storage
from .managers import ec2
from .managers import cloudstack, ec2

api = Flask(__name__)
api.debug = os.environ.get("API_DEBUG", "0") in ("True", "true", "1")

managers = {
"ec2": ec2.EC2Manager,
"cloudstack": cloudstack.CloudStackManager,
}


Expand Down

0 comments on commit e509ad8

Please sign in to comment.