9 lines
157 B
Python
9 lines
157 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
# app_name = "haikalbot"
|
|
|
|
urlpatterns = [
|
|
path("bot/", views.HaikalBot.as_view(), name="haikalbot"),
|
|
]
|