enumSourceUris static method

Map<String, String> enumSourceUris()

Returns a map of enum names to their canonical source URIs.

Used for deduplication when the same enum is exported through multiple barrels (e.g., tom_core_kernel and tom_core_server).

Implementation

static Map<String, String> enumSourceUris() {
  return {
    'ChatMessageType': 'package:tom_chattools/src/api/chat/chat_message.dart',
    'ChatAttachmentType': 'package:tom_chattools/src/api/chat/chat_message.dart',
    'ChatResponseStatus': 'package:tom_chattools/src/api/chat/chat_response.dart',
    'ChatReceiverType': 'package:tom_chattools/src/api/chat/chat_receiver.dart',
  };
}