12 lines
179 B
Python
12 lines
179 B
Python
from django.conf.urls import url
|
|
from .views import ChatterBotView
|
|
|
|
|
|
urlpatterns = [
|
|
url(
|
|
r'^$',
|
|
ChatterBotView.as_view(),
|
|
name='chatterbot',
|
|
),
|
|
]
|