sumit989 commited on
Commit
a0235d1
·
verified ·
1 Parent(s): 61e5e02

Update server/app.py

Browse files
Files changed (1) hide show
  1. server/app.py +8 -2
server/app.py CHANGED
@@ -1,4 +1,10 @@
1
  from app import app
2
 
3
- # expose for OpenEnv
4
- application = app
 
 
 
 
 
 
 
1
  from app import app
2
 
3
+ def main():
4
+ return app
5
+
6
+ # required for OpenEnv
7
+ application = app
8
+
9
+ if __name__ == "__main__":
10
+ main()