10 lines
No EOL
123 B
Python
10 lines
No EOL
123 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
path('github',views.GithubPage, name='GithubPage'),
|
|
|
|
] |