9 lines
132 B
Python
9 lines
132 B
Python
from django.urls import path
|
|
|
|
from database.views import visit_counter
|
|
|
|
|
|
urlpatterns = [
|
|
path('hello-redis/', visit_counter),
|
|
]
|