Skip to content
Snippets Groups Projects
Select Git revision
  • ee29e46eae2fa7c93e82ec36b97763f5671d52d8
  • main default protected
2 results

getCombinationByUUID.js

Blame
  • getCombinationByUUID.js 271 B
    import api from "../axios";
    
    const getCombinationByUUID = async (uuid) => {
      try {
        const response = await api.get(`/parts/combination/by-uuid/${uuid}`);
        return response.data.data;
      } catch (error) {
        throw error;
      }
    };
    
    export default getCombinationByUUID;