getConsumersOfSchema CallablegetConsumersOfSchema(directory: string): (path: string) => Promise<Service[]>Returns the consumers of a given schema path.@exampleimport utils from '@eventcatalog/utils';const { getConsumersOfSchema } = utils('/path/to/eventcatalog');// Returns the consumers of a given schema pathconst consumers = await getConsumersOfSchema('events/InventoryAdjusted/schema.json');
Returns the consumers of a given schema path.