seller_central_backend/config/urls.py
vickytechkey 010dc0352e
All checks were successful
Build and Deploy Beta / build-and-push (push) Successful in 1m31s
Build and Deploy Beta / deploy (push) Successful in 12s
adding api urls and testing framework
2026-08-09 11:42:43 +05:30

29 lines
963 B
Python

"""
URL configuration for config project.
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/6.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from django.http import HttpResponse
def welcome_view(request):
return HttpResponse("welcome vignesh")
urlpatterns = [
path('admin/', admin.site.urls),
path('api/', include('api.urls')),
path('', welcome_view, name='welcome'),
]