Add drop:tmdb command for adding shows/movies to watched log

This commit is contained in:
Dan Jones 2026-03-06 13:58:55 -06:00
commit 88802020fe
10 changed files with 377 additions and 3 deletions

24
tmdb/type.go Normal file
View file

@ -0,0 +1,24 @@
package tmdb
import sdk "github.com/cyruzin/golang-tmdb"
//go:generate stringer -type=Type
type Type uint8
const (
Unknown Type = iota
Movie
Series
)
type TVDetails struct {
Series *sdk.TVDetails
Episode *sdk.TVEpisodeDetails
}
type Info struct {
ID int
Type Type
Season int
Episode int
}