This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/urls.py

7 lines
121 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("<str:ico>", views.test, name="ares_test")
]