7 lines
151 B
Python
7 lines
151 B
Python
from django.urls import path
|
|
from django.views.generic import View
|
|
|
|
urlpatterns = [
|
|
path("simple/action/", View.as_view(), name="simpleAction"),
|
|
]
|