summaryrefslogtreecommitdiff
path: root/internal/app/messages.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-03 19:53:04 +0300
committerPaul Buetow <paul@buetow.org>2025-10-03 19:53:04 +0300
commitdba07073652cb1bbad58d2e82329d07eefe3c12d (patch)
tree79df1afd3837b5efc46880eab9adf58381293dfc /internal/app/messages.go
parent0ae149babf5ddf5eda22778b9e5e81567a180561 (diff)
Add tag editing UI and responsive layoutv0.2.2
Diffstat (limited to 'internal/app/messages.go')
-rw-r--r--internal/app/messages.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/app/messages.go b/internal/app/messages.go
index a905263..6c571f7 100644
--- a/internal/app/messages.go
+++ b/internal/app/messages.go
@@ -8,6 +8,7 @@ type videosLoadedMsg struct {
cacheErr error
pending []string
cache *durationCache
+ tagErr error
}
type playVideoMsg struct {
@@ -26,3 +27,9 @@ type durationUpdateMsg struct {
duration time.Duration
err error
}
+
+type tagsSavedMsg struct {
+ path string
+ tags []string
+ err error
+}