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

26
tmdb/type_string.go Normal file
View file

@ -0,0 +1,26 @@
// Code generated by "stringer -type=Type"; DO NOT EDIT.
package tmdb
import "strconv"
func _() {
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
var x [1]struct{}
_ = x[Unknown-0]
_ = x[Movie-1]
_ = x[Series-2]
}
const _Type_name = "UnknownMovieSeries"
var _Type_index = [...]uint8{0, 7, 12, 18}
func (i Type) String() string {
idx := int(i) - 0
if i < 0 || idx >= len(_Type_index)-1 {
return "Type(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Type_name[_Type_index[idx]:_Type_index[idx+1]]
}