Inventory-Management-System/inventory/urls.py
2023-11-18 22:04:32 +07:00

7 lines
136 B
Python

from django.urls import path, include
from inventory.views import test
urlpatterns = [
path('overview/', test, name='overview'),
]