Dhrumit1314 commited on
Commit
b292ae6
1 Parent(s): 51b4f27

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -37,6 +37,12 @@ def extract_video_id(youtube_link):
37
  else:
38
  return None
39
 
 
 
 
 
 
 
40
  # Route for uploading video files
41
  @app.route('/upload_video', methods=['POST'])
42
  def upload_video():
 
37
  else:
38
  return None
39
 
40
+
41
+ @app.route('/',methods=['GET'])
42
+ def hello():
43
+ h = "<h1>Hello World</h1>"
44
+ return h
45
+
46
  # Route for uploading video files
47
  @app.route('/upload_video', methods=['POST'])
48
  def upload_video():