triviOS/ui/main/urls.py

8 lines
106 B
Python
Raw Normal View History

2023-09-11 09:59:25 +02:00
from django.urls import path
from .views import home
urlpatterns = [
path('', home, name='home'),
]