mirror of
https://github.com/django-components/django-components.git
synced 2025-07-08 01:45:00 +00:00
6 lines
128 B
Python
6 lines
128 B
Python
from calendarapp.views import calendar
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path("", calendar, name="calendar"),
|
|
]
|