import { AppJsonFile } from '../../../core/app';
import { appShowCliLeaf as appShow } from '../show';

export const showModels: typeof appShow = {
  ...appShow,
  description: 'Show this application\'s "models" configuration',
  async action() {
    const appJsonFile = AppJsonFile();
    return appJsonFile.describeModels();
  }
};
