This commit is contained in:
guange 2019-01-21 11:23:36 +08:00
parent 3bae51d789
commit 385074d6ee
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('', views.crawl, name='index'),
path('crawl', views.crawl, name='crawl'),
path('result',views.result, name='result'),
]