This repository has been archived on 2022-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
payments/billing/urls.py

7 lines
136 B
Python

from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [path("", views.index, name="index")]