blob: 51b510fe7bdbc5c207b7eb847bfba843569e985c [file] [log] [blame]
Sapan Bhatia26d40bc2014-05-12 15:28:02 -04001import os
2import base64
3from syncstep import SyncStep
4
5class OpenStackSyncStep(SyncStep):
6 """ PlanetStack Sync step for copying data to OpenStack
7 """
8
9 def __init__(self, **args):
10 SyncStep.__init__(self, **args)
11 return
12
13 def __call__(self, **args):
14 return self.call(**args)