ayush2917 commited on
Commit
062c670
·
verified ·
1 Parent(s): d063f8f

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -7
main.py CHANGED
@@ -1,10 +1,4 @@
1
- from flask import Flask
2
-
3
- app = Flask(__name__)
4
-
5
- @app.route('/')
6
- def home():
7
- return "Hello, Manavi! This is a test page."
8
 
9
  if __name__ == "__main__":
10
  app.run(host='0.0.0.0', port=5000)
 
1
+ from app import app
 
 
 
 
 
 
2
 
3
  if __name__ == "__main__":
4
  app.run(host='0.0.0.0', port=5000)