index.ts raw

   1  /**
   2   * Domain Layer
   3   *
   4   * Core domain logic with no external dependencies.
   5   * Organized into bounded contexts.
   6   */
   7  
   8  // Shared Kernel - Common value objects and utilities
   9  export * from './shared'
  10  
  11  // Social Bounded Context - Following, muting, social graph
  12  export * from './social'
  13  
  14  // Relay Bounded Context - Relay management and preferences
  15  export * from './relay'
  16  
  17  // Identity Bounded Context - Accounts and authentication
  18  export * from './identity'
  19  
  20  // Content Bounded Context - Notes, reactions, reposts
  21  export * from './content'
  22