"""shop.views package aggregate entry - re-export all submodule symbols. Preserves external `from shop.views import X` for shop/urls.py. """ from .shop_base_views import ( BindDianpuView, ShopGoodsView, ShangdianLoginView, ShopOverviewView, QrcodeDownloadView, DianpuShouzhiTongjiView, ShopQrcodeView, ) from .shop_product_views import ( ShopProductConfigView, ShopProductModifyView, ShopProductListView, ShopProductModifyView1, ) from .shop_member_views import ( MemberListView, SubShopListView, SubShopModifyView, ) from .shop_order_views import ( ShopOrderStatisticsView, ShopOrderManageView, ) from .shop_refund_views import ( ShopRefundView, ShopForceCompleteView, ShopTransferHallView, ShopFineApplyView, ) __all__ = [ # shop_base_views "BindDianpuView", "ShopGoodsView", "ShangdianLoginView", "ShopOverviewView", "QrcodeDownloadView", "DianpuShouzhiTongjiView", "ShopQrcodeView", # shop_product_views "ShopProductConfigView", "ShopProductModifyView", "ShopProductListView", "ShopProductModifyView1", # shop_member_views "MemberListView", "SubShopListView", "SubShopModifyView", # shop_order_views "ShopOrderStatisticsView", "ShopOrderManageView", # shop_refund_views "ShopRefundView", "ShopForceCompleteView", "ShopTransferHallView", "ShopFineApplyView", ]