7 lines
125 B
Python
7 lines
125 B
Python
from django.urls import path
|
|
from .views import CreateStatAPI
|
|
|
|
urlpatterns = [
|
|
path('stats/', CreateStatAPI.as_view())
|
|
]
|