@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
17 lines (14 loc) • 462 B
JavaScript
import { graphqlClientFactory } from './graphql.mjs';
import { restClientFactory } from './rest.mjs';
function adminClientFactory({ params, handleClientError, session, }) {
return {
rest: restClientFactory({
params,
session,
handleClientError,
}),
graphql: graphqlClientFactory({ params, session, handleClientError }),
};
}
export { adminClientFactory };
//# sourceMappingURL=factory.mjs.map