Initial commit

This commit is contained in:
2024-09-30 23:05:27 +02:00
commit cf0516fadc
7 changed files with 812 additions and 0 deletions

14
nixprstatus/__main__.py Normal file
View File

@@ -0,0 +1,14 @@
import typer
app = typer.Typer()
@app.command()
def pr(status: str):
"""Get status of pull request"""
typer.echo(f"Pull Request Status: {status}")
def main():
app()
if __name__ == "__main__":
main()