/**
 * Defines the metadata of a modules to be explored
 */
export interface IModuleInfo {
  type: string;
  name: string; // display name
  path: string; // module full path
  entryPoint?: {
    class: string; // class name
    method: string; // invocation method name
  };
}
