# -*- 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_path from AdminController import AlgorithmShopManageController from Controller.AlgorithmShop import AlgorithmShopController from Controller.CloudPhoto import CloudPhotoController from Controller.Cron import CronCloudPhotoController urlpatterns = [ re_path(r'^api/(?P.*)$', AlgorithmShopController.AlgorithmShopView.as_view()), re_path(r'^cron/(?P.*)$', CronCloudPhotoController.CronCloudPhotoView.as_view()), re_path(r'^photo/(?P.*)$', CloudPhotoController.CronCloudPhotoView.as_view()), re_path(r'^open/(?P.*)$', AlgorithmShopController.AlgorithmShopView.as_view()), re_path(r'^(?P[a-zA-Z0-9]+)/manage/(?P.*)$', AlgorithmShopManageController.AlgorithmShopManageView.as_view()), ]