Files
Exam/business/urls.py
2026-01-09 18:28:10 +08:00

12 lines
249 B
Python

# -*- coding: utf-8 -*-
from django.conf.urls import url
from business import biz_render
from django.urls import path
urlpatterns = [
path('', biz_render.home, name='index'),
path('notify', biz_render.notify, name='notify'),
]