#!/usr/bin/env python

import logging
import xtrabackup2swift

logging.basicConfig(level=logging.INFO)
LOG = logging.getLogger(__name__)

(options, args) = xtrabackup2swift.cli_options()

if __name__ == '__main__':
    # run the restoration
    run_restoration(options)
