fe49b302ae
fix website
7 lines
117 B
Python
7 lines
117 B
Python
from django.urls import path
|
|
|
|
from apps.website.views import home
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
] |