basic app structure setup

This commit is contained in:
CDaut 2022-05-29 18:34:20 +02:00 committed by CDaut
parent 22b616082b
commit be4123361f
11 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,7 @@
from blog.views import viewblog, addpost
from django.urls import path
urlpatterns = [
path('', viewblog),
path('manage/add/', addpost),
]