def do_report(rows):
path = Path.cwd().joinpath("env-diff.md")
utils.write_markdown(rows, path)
click.echo(green("Created Markdown report: ") +
white(f"{path}", bold=True), err=True)
path = Path.cwd().joinpath("env-diff.csv")
utils.write_csv(rows, path)
click.echo(green("Created CSV report: ") +
white(f"{path}", bold=True), err=True)
评论列表
文章目录