| 123456789101112131415161718192021 | # -*- encoding: utf-8 -*-"""@File    : algorithm_shop_url.py@Time    : 2022/8/26 14:38@Author  : stephen@Email   : zhangdongming@asj6.wecom.work@Software: PyCharm"""from django.urls import re_pathfrom Controller.AlgorithmShop import AlgorithmShopControllerfrom Controller.CloudPhoto import CloudPhotoControllerfrom Controller.Cron import CronCloudPhotoControllerurlpatterns = [    re_path(r'^api/(?P<operation>.*)$', AlgorithmShopController.AlgorithmShopView.as_view()),    re_path(r'^cron/(?P<operation>.*)$', CronCloudPhotoController.CronCloudPhotoView.as_view()),    re_path(r'^photo/(?P<operation>.*)$', CloudPhotoController.CronCloudPhotoView.as_view()),    re_path(r'^open/(?P<operation>.*)$', AlgorithmShopController.AlgorithmShopView.as_view()),]
 |