7 lines
121 B
Python
7 lines
121 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("<str:ico>", views.test, name="ares_test")
|
|
]
|