mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
9 lines
152 B
Python
9 lines
152 B
Python
from django.urls import path
|
|
|
|
from .views import decompressed_event_detail
|
|
|
|
|
|
urlpatterns = [
|
|
path('event/<uuid:pk>/', decompressed_event_detail),
|
|
]
|