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