forked from 00dani/lemoncurry
8 lines
196 B
Python
8 lines
196 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'webmention'
|
|
urlpatterns = (
|
|
path('s', views.accept, name='accept'),
|
|
path('s/<int:mention_id>', views.status, name='status')
|
|
)
|