Files
pyasic/web_testbench.py
2022-04-18 14:17:03 -06:00

9 lines
169 B
Python

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