core: reformat file tree

This commit is contained in:
2023-10-25 16:50:05 +02:00
parent a6a86a67a5
commit e253631f09
41 changed files with 1 additions and 1 deletions

7
profiles/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path("<str:uuid>", views.ProfilePage.as_view(), name="profile_page"),
]