import Api from '../Api' export const getCondition = (id) => { return Api.request({ url: `/condition/${id}`, method: 'GET', }) } export const getListOfCondition = () => { return Api.request({ url: `/condition/`, method: 'GET', }) }