9 lines
177 B
Python
9 lines
177 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from django.urls import path
|
|
|
|
from .views import TicketListApiView
|
|
|
|
urlpatterns = [
|
|
path("ticket/", TicketListApiView.as_view(), name="ticket"),
|
|
] |