mirror of
https://github.com/Rushilwiz/ask-a-philosopher.git
synced 2025-04-18 11:10:16 -04:00
6 lines
108 B
Python
6 lines
108 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('ask/', views.ask, name='ask'),
|
|
] |