unfinity commited on
Commit
b54580b
1 Parent(s): ff2b03c
Files changed (2) hide show
  1. start.py +0 -3
  2. test.py +0 -7
start.py DELETED
@@ -1,3 +0,0 @@
1
- import subprocess
2
-
3
- subprocess.run("uvicorn api:app --host 0.0.0.0 --port 7860", shell=True)
 
 
 
 
test.py DELETED
@@ -1,7 +0,0 @@
1
- from fastapi import FastAPI
2
-
3
- app = FastAPI()
4
-
5
- @app.get("/")
6
- def read_root():
7
- return {"Hello": "World!"}