5 lines
136 B
Python
5 lines
136 B
Python
from django.urls import path
|
|
from .views import *
|
|
|
|
app_name = "common"
|
|
urlpatterns = [path("", home), path("home/", home, name="home")]
|