The Feeds module allows users to subscribe to and read RSS/Atom feeds. It provides feed management, automatic fetching of new entries, and a clean reading experience for feed content.
## Data Model
### Feed
The `Feed` entity has the following attributes:
| Field | Type | Description |
|-------|------|-------------|
| ID | string | Unique identifier for the feed (UUID) |
| Title | string | Title of the feed |
| URL | string | URL of the feed (RSS/Atom) |
| Description | string | Description of the feed |
| SiteURL | string | URL of the website associated with the feed |
| ImageURL | string | URL of the feed's image or logo |
| LastFetched | timestamp | When the feed was last fetched |
| CreatedAt | timestamp | When the feed was added |
| UpdatedAt | timestamp | When the feed was last updated |
### Entry
The `Entry` entity represents a single item in a feed:
| Field | Type | Description |
|-------|------|-------------|
| ID | string | Unique identifier for the entry (UUID) |
| FeedID | string | ID of the parent feed |
| Title | string | Title of the entry |
| URL | string | URL of the entry |
| Content | string | HTML content of the entry |
| Summary | string | Summary or excerpt of the entry |
| Author | string | Author of the entry |
| Published | timestamp | When the entry was published |
| Updated | timestamp | When the entry was last updated |
| ReadAt | timestamp | When the entry was marked as read (null if unread) |
| FullContent | string | Full content of the entry (if fetched separately) |
| CreatedAt | timestamp | When the entry was added to the system |
| UpdatedAt | timestamp | When the entry was last updated in the system |