blob: 46056cfef22de851f3ef314bda6917dd50e7001d [file] [log] [blame]
Scott Bakerb63ea792016-08-11 10:24:48 -07001import os
2import base64
3from synchronizers.base.syncstep import SyncStep
4
5class OpenStackSyncStep(SyncStep):
6 """ XOS 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)