add first url

add first url
This commit is contained in:
jnfire
2022-08-02 09:04:23 +02:00
parent 2a80349e50
commit bb5423fcc4
2 changed files with 9 additions and 2 deletions

7
apps/website/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from apps.web.views import home
urlpatterns = [
path("", home, name="home"),
]