_prefix.ts 296 B

12345678910
  1. export const API_MODULE = '/api'
  2. //用户模块
  3. export const USER_MODULE= `${API_MODULE}/users`
  4. //商店模块
  5. export const STORE_MODULE= `${API_MODULE}/stores`
  6. //商品模块
  7. export const PRODUCT_MODULE= `${API_MODULE}/products`
  8. //图片模块
  9. export const IMAGE_MODULE= `${API_MODULE}/images`