export interface SourceInterface {
  id: string;
  name: string;
  tag: string;
  parent: string;
  meta: Record<string, any>;
}
