#!/usr/bin/python3
"""
this program is mainly a wrapper around the deployment module.
"""
import central_dop.deployment

def main ():
    central_dop.deployment.generate_config(
        "/srv/deploy", ["/srv/checkout", "/srv/central-ui/root"], "/srv/central-ui/")

if __name__ == "__main__":
    main()
