/** * Video Streaming Feature - Main Export * * This is the main entry point for the video streaming feature. * It exports all the public APIs that other parts of the application can use. */ // Components export * from './components'; // Hooks export * from './hooks'; // Services export { videoApiService, VideoApiService } from './services/videoApi'; // Types export * from './types'; // Utils export * from './utils/videoUtils'; // Main feature component export { VideoStreamingPage } from './VideoStreamingPage';