@@ -0,0 +1,5 @@
+"""
+Exports from this provider
+
+from .provider import GCECloudProvider # noqa
@@ -0,0 +1,9 @@
+from cloudbridge.cloud.base import BaseCloudProvider
+class GCECloudProvider(BaseCloudProvider):
+ PROVIDER_ID = 'gce'
+ def __init__(self, config):
+ super(GCECloudProvider, self).__init__(config)