pass-gen/app/main.py
2021-07-05 18:53:02 +02:00

14 lines
188 B
Python

import typer
from .pass_gen import generate_password
app = typer.Typer()
@app.command()
def main() -> None:
typer.echo(generate_password(0))
if __name__ == "__main__":
app()