crawlerApp/githubCrawler/urls.py

10 lines
No EOL
123 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('github',views.GithubPage, name='GithubPage'),
]