You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
313 B
Python
14 lines
313 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.conf.urls import handler404
|
|
from django.conf.urls.static import static
|
|
from django.conf import settings
|
|
from billing import views
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('check', views.create_charges_for_recurring_services, name='check'),
|
|
|
|
]
|