Initial implementation of tests for plugins framework

This commit is contained in:
Jeremy Stretch
2020-04-01 17:08:47 -04:00
parent 093181c186
commit 30e330c887
16 changed files with 237 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = (
path('models/', views.DummyModelsView.as_view(), name='dummy_models'),
)