summaryrefslogtreecommitdiff
path: root/app/prompts/urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-07-05 22:13:05 -0400
committerluxagraf <sng@luxagraf.net>2020-07-05 22:13:05 -0400
commitd0e24c723f0383ce786e178a273e4de1ccb4fc43 (patch)
treecab41a3a5fcaab648e0fb489c26cf0858ea4bbce /app/prompts/urls.py
parent4e65b9f4867f140c54478cfeb25a11ed00046421 (diff)
Added prompts app
Diffstat (limited to 'app/prompts/urls.py')
-rw-r--r--app/prompts/urls.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/prompts/urls.py b/app/prompts/urls.py
new file mode 100644
index 0000000..7cbe09a
--- /dev/null
+++ b/app/prompts/urls.py
@@ -0,0 +1,13 @@
+from django.urls import path
+
+from . import views
+
+app_name = "prompts"
+
+urlpatterns = [
+ path(
+ r'',
+ views.RandomList.as_view(),
+ name="random-prompt"
+ ),
+]