Files
ihrm/horilla_widgets/urls.py
Ashwanth Balakrishnan 58be33a8d7 Added Pre-Commit Hooks (#175)
* Added pre commit hook

* Run pre commit hook on all files

---------

Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
2024-05-07 12:23:36 +05:30

12 lines
191 B
Python

"""
horilla_widget/urls.py
"""
from django.urls import path
from horilla_widgets import views
urlpatterns = [
path("get-filter-form", views.get_filter_form, name="get-filter-form"),
]