A large number of small tooling and README updates.

This commit is contained in:
Ben Rog-Wilhelm 2022-11-10 16:43:26 -06:00 committed by GitHub
parent adc24ec91e
commit 937d36de31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 76 additions and 81 deletions

17
util/command.py Executable file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env python3
import sys
from common import _operation
def run_command(argv):
result = _operation(f"command",[
[
"python3",
"-m", "flask",
] + argv[1:]
])
sys.exit(result.returncode)
if __name__=='__main__':
run_command(sys.argv)