from django.urls import path
from django.conf.urls import url
from . import controller_ae
urlpatterns = [
path('chatbot', controller_ae.ae)
]