summaryrefslogtreecommitdiff
path: root/internal/app/video.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-02 08:38:03 +0300
committerPaul Buetow <paul@buetow.org>2025-10-02 08:38:03 +0300
commit0c1b108ff5fccf39ae5bc6dc06802ce565bda633 (patch)
tree914e65e04bae26d3eae565f9d6a64d08ade361d0 /internal/app/video.go
parent36be499ed342d92969ccaaff083c557a0951def9 (diff)
new version major refactorv0.2.0
Diffstat (limited to 'internal/app/video.go')
-rw-r--r--internal/app/video.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/app/video.go b/internal/app/video.go
new file mode 100644
index 0000000..f969ce6
--- /dev/null
+++ b/internal/app/video.go
@@ -0,0 +1,12 @@
+package app
+
+import "time"
+
+type video struct {
+ Name string
+ Path string
+ Duration time.Duration
+ ModTime time.Time
+ Size int64
+ Err error
+}