feat: hello world

This commit is contained in:
Tahinli 2024-06-27 21:21:38 +03:00
commit ed1d65fa62
29 changed files with 464 additions and 0 deletions

6
hello/urls.py Normal file
View file

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