9 lines
182 B
Python
9 lines
182 B
Python
from django.urls import path
|
|
|
|
from .views import home, create_agent
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("create-agent/", create_agent, name="create_agent"),
|
|
]
|