added web testbench to main apps

This commit is contained in:
UpstreamData
2022-04-14 18:43:36 -06:00
parent b5c455ffa4
commit 13f033440d

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()