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