From b5bb3d2639ce6f74e8d63336cc46e206f8a3ce15 Mon Sep 17 00:00:00 2001 From: "majiahui@haimaqingfan.com" Date: Thu, 29 Feb 2024 16:08:14 +0800 Subject: [PATCH] =?UTF-8?q?=E9=92=88=E7=81=B8=E9=A2=84=E7=BA=A6=E6=8C=82?= =?UTF-8?q?=E5=8F=B7=E7=B3=BB=E7=BB=9F=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- demo/urls.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 demo/urls.py diff --git a/demo/urls.py b/demo/urls.py new file mode 100644 index 0000000..392343e --- /dev/null +++ b/demo/urls.py @@ -0,0 +1,6 @@ +from django.urls import path, include +from . import views + +urlpatterns = [ + path('', views.hello, name=''), +] \ No newline at end of file