keybinds in entries list

This commit is contained in:
GitBluub
2024-05-05 16:22:03 +02:00
parent 8baaf5bae0
commit 03b3566b0a
6 changed files with 87 additions and 62 deletions
+7 -6
View File
@@ -5,18 +5,19 @@ import (
"time"
"github.com/charmbracelet/bubbles/key"
"github.com/google/uuid"
)
type Feed struct {
Id string `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
FaviconUrl string `json:"faviconUrl"`
Tags []string `json:"tags"`
Id uuid.UUID `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
FaviconUrl string `json:"faviconUrl"`
Tags []string `json:"tags"`
}
type Entry struct {
Id string `json:"id"`
Id uuid.UUID `json:"id"`
ArticleTitle string `json:"title"`
Content string `json:"content"`
Link string `json:"link"`