File "getIntegrationDetailInfo.ts"

Full Path: /var/www/html/gitep_front/src/entities/models/api/getIntegrationDetailInfo.ts
File size: 276 bytes
MIME-type: text/x-java
Charset: utf-8

import {axiosInstance} from "../../../shared";

export const getIntegrationInfo = async (id:number) => {
  try {
    const result = await axiosInstance.get(`integrations/${id}`)

    return result?.data;
  } catch (error) {
    console.error('getCassaList error', error)
  }
}