From ea0af99c47c2c15351bb483d2091d660418b6a76 Mon Sep 17 00:00:00 2001 From: huangzhenpc Date: Sat, 1 Mar 2025 11:26:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=8E=B0=E6=9C=89=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=20=E5=A2=9E=E5=8A=A0=E5=9F=9F=E5=90=8D=E5=92=8C?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=97=B6=E9=97=B4=E5=85=B3=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index ec744e2..c9f6cb1 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -46,7 +46,7 @@ def create_app(): domains = get_allowed_domains() return jsonify(domains), 200 - @app.route('/allowed_domains_with_time', methods=['GET']) + @app.route('/allowed_domains/list_with_time', methods=['GET']) def list_domains_with_time(): domains_with_time = get_allowed_domains_with_time() return jsonify(domains_with_time), 200