10 lines
144 B
Python
10 lines
144 B
Python
from django.urls import path
|
|
|
|
from tracker import views
|
|
|
|
app_name = "tracker"
|
|
|
|
urlpatterns = [
|
|
path("today/", views.today, name="today"),
|
|
]
|