From 2f499674ffd8db25c3d0b3b1bff90513db847d74 Mon Sep 17 00:00:00 2001 From: cube Date: Mon, 16 Mar 2026 01:47:34 +0000 Subject: [PATCH] remove hello world --- myriad/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/myriad/__init__.py b/myriad/__init__.py index 6a261b6..ad5709e 100644 --- a/myriad/__init__.py +++ b/myriad/__init__.py @@ -20,11 +20,6 @@ def create_app(test_config=None): # ensure the instance folder exists os.makedirs(app.instance_path, exist_ok=True) - - # a simple page that says hello - @app.route('/hello') - def hello(): - return 'Hello, World!' from . import db db.init_app(app)