5 lines
144 B
JavaScript
5 lines
144 B
JavaScript
import { get } from '../helpers/request.ts';
|
|
|
|
export default {
|
|
getById: async (id) => await get('blueprint/getById', { params: { id } })
|
|
}; |