added web testbench to main apps

This commit is contained in:
UpstreamData
2022-04-14 18:43:36 -06:00
committed by UpstreamData
parent 4b767c5427
commit ad75b1d25c

9
web_testbench.py Normal file
View File

@@ -0,0 +1,9 @@
from tools.web_testbench.app import app
import uvicorn
def main():
uvicorn.run("web_testbench:app", host="0.0.0.0", port=80)
if __name__ == "__main__":
main()