mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-04 04:10:10 -06:00
10 lines
249 B
Python
10 lines
249 B
Python
from django.urls import path
|
|
|
|
from .views import auth_token_list, auth_token_create
|
|
|
|
|
|
urlpatterns = [
|
|
path('auth_tokens/', auth_token_list, name='auth_token_list'),
|
|
path('auth_tokens/create/', auth_token_create, name='auth_token_create'),
|
|
]
|