guts-realtime 0.1.0

Real-time WebSocket support for Guts code collaboration platform.
Documentation
# guts-realtime

Real-time WebSocket support for Guts.

## Overview

This crate provides real-time updates via WebSocket:

- Repository events (push, PR, issues)
- Notification streams
- Presence and activity feeds
- Pub/sub event routing

## Usage

```rust
use guts_realtime::{WebSocketHandler, EventStream};

// Handle WebSocket connections
let handler = WebSocketHandler::new(event_bus);

// Subscribe to repository events
let stream = handler.subscribe("owner/repo").await?;
```

## Part of Guts

This crate is part of [Guts](https://github.com/AbdelStark/guts), a decentralized, censorship-resistant alternative to GitHub built on BFT consensus.

## License

MIT OR Apache-2.0