-
-
Save Nishant127/ed0e02cfb0ae0da3fb82f17b21252ca4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.urls import path | |
from django.contrib import admin | |
from . import views | |
urlpatterns = [ | |
path("admin/", admin.site.urls), | |
path("", views.home, name="home"), | |
path("payment/", views.order_payment, name="payment"), | |
path("callback/", views.callback, name="callback"), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment