algorithm_shop_url.py 380 B

123456789101112131415
  1. # -*- encoding: utf-8 -*-
  2. """
  3. @File : algorithm_shop_url.py
  4. @Time : 2022/8/26 14:38
  5. @Author : stephen
  6. @Email : zhangdongming@asj6.wecom.work
  7. @Software: PyCharm
  8. """
  9. from django.urls import re_path
  10. from Controller.AlgorithmShop import AlgorithmShopController
  11. urlpatterns = [
  12. re_path(r'^api/(?P<operation>.*)$', AlgorithmShopController.AlgorithmShopView.as_view()),
  13. ]