YashashMathur commited on
Commit
2d4a521
·
verified ·
1 Parent(s): 36e8c44

Fix: Add models.py and update server

Browse files
Files changed (1) hide show
  1. server/app.py +2 -4
server/app.py CHANGED
@@ -1,12 +1,10 @@
1
- from env.server import app as _app
2
  import uvicorn
3
 
4
 
5
  def main():
6
- uvicorn.run(_app, host="0.0.0.0", port=7860)
7
 
8
 
9
  if __name__ == "__main__":
10
  main()
11
-
12
- __all__ = ["app", "main"]
 
1
+ from env.server import app
2
  import uvicorn
3
 
4
 
5
  def main():
6
+ uvicorn.run(app, host="0.0.0.0", port=7860)
7
 
8
 
9
  if __name__ == "__main__":
10
  main()