Initial commit
This commit is contained in:
14
nixprstatus/__main__.py
Normal file
14
nixprstatus/__main__.py
Normal 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()
|
Reference in New Issue
Block a user