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