A large number of small tooling and README updates.
This commit is contained in:
parent
adc24ec91e
commit
937d36de31
8 changed files with 76 additions and 81 deletions
17
util/command.py
Executable file
17
util/command.py
Executable 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)
|
Loading…
Add table
Add a link
Reference in a new issue