• gaoming's avatar
    f · c7835f21
    gaoming authored
    c7835f21
urls.py 182 Bytes
from django.urls import include, path,re_path
from . import views

app_name="home"
#(?P<sub_name>[a-z0-9]+/)?
urlpatterns =[
    re_path('nearly_hospitals',views.nearly_hospitals),
]