# -*- 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 Controller.AlgorithmShop import AlgorithmShopController urlpatterns = [ re_path(r'^api/(?P.*)$', AlgorithmShopController.AlgorithmShopView.as_view()), ]