getUser CallablegetUser(catalogDir: string): (id: string) => Promise<undefined | User>Returns a user from EventCatalog.@exampleimport utils from '@eventcatalog/utils';const { getUser } = utils('/path/to/eventcatalog');// Gets the user with the given idconst user = await getUser('eventcatalog-core-user');
Returns a user from EventCatalog.