add dash for dashboards boilerpate

This commit is contained in:
MvS 2019-12-05 11:47:00 -08:00
parent 4afbc76543
commit e926c8a03e
9 changed files with 1 additions and 0 deletions

View file

@ -0,0 +1,34 @@
#!/usr/bin/env python3
import os
import re
import click
@click.command()
@click.option('-s',
'--source',
default='dev',
nargs=1,
show_default=True,
help='Some source string.')
@click.option('-t',
'--target',
default='staging',
nargs=1,
show_default=True,
help='Some target string.')
@click.option('-p',
'--services',
required=True)
def main(source, target, services):
print(source, target, services)
if __name__ == "__main__":
main(source, target, services)