mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-19 11:00:16 -04:00
10 lines
196 B
Python
10 lines
196 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name='home'),
|
|
path('about/', views.about, name='about')
|
|
]
|