Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 1 | import os |
2 | import base64 | ||||
Scott Baker | af599eb | 2017-03-21 12:43:26 -0700 | [diff] [blame^] | 3 | from synchronizers.new_base.syncstep import SyncStep |
Scott Baker | b63ea79 | 2016-08-11 10:24:48 -0700 | [diff] [blame] | 4 | |
5 | class 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) |