initial markup endpoint

This commit is contained in:
2019-10-10 15:28:30 -07:00
parent f2e9a59be6
commit 46f4080b93
4 changed files with 33 additions and 0 deletions

7
markup/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('submit', views.submit, name='markup_submit'),
]