rein0421 commited on
Commit
06a8d08
·
verified ·
1 Parent(s): 5ea4677

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -788,13 +788,13 @@ def generate_quiz(transcript_or_json_str):
788
 
789
  # --- Flask ルーティング (HTMLページ表示) ---
790
 
791
- @app.route('/')
792
  @app.route('/input')
793
  def input_page():
794
  """入力画面を表示"""
795
  logging.debug("Routing: /input ページ表示")
796
  return render_template('input.html')
797
-
798
  @app.route('/history')
799
  def history_page():
800
  """履歴画面を表示"""
 
788
 
789
  # --- Flask ルーティング (HTMLページ表示) ---
790
 
791
+
792
  @app.route('/input')
793
  def input_page():
794
  """入力画面を表示"""
795
  logging.debug("Routing: /input ページ表示")
796
  return render_template('input.html')
797
+ @app.route('/')
798
  @app.route('/history')
799
  def history_page():
800
  """履歴画面を表示"""