index.ts 445 Bytes
import fetchAllModels from "./fetchAllModels";
import fetchAllDatasets from "./fetchAllDatasets";
import fetchAllOrgs from "./fetchAllOrgs";
import fetchUser from "./fetchUser";
import fetchContract from "./fetchContract";
import fetchCurrentUser from "./fetchCurrentUser";
import fetchOrg from "./fetchOrg";

export default {
  fetchAllModels,
  fetchAllDatasets,
  fetchAllOrgs,
  fetchUser,
  fetchOrg,
  fetchContract,
  fetchCurrentUser
};