import { get } from '../utils/request' import type { MoldInfo } from '../types' /** 获取版房列表 */ export const getMoldList = (params?: { keyword?: string }) => get('/api/molds', params as Record) /** 获取版房详情 */ export const getMoldDetail = (id: number) => get(`/api/molds/${id}`)