nidus-sync/userfile/enum.go
Eli Ribble fdd783c19c
Rework userfile yet again
I'm settling on the idea that strings should never be returned from the
userfile system. Instead, indicate which collection you want and pass
objects across.
2026-02-08 04:36:12 +00:00

13 lines
215 B
Go

package userfile
type Collection int
const (
CollectionAudioRaw Collection = iota
CollectionAudioNormalized
CollectionAudioTranscoded
CollectionCSV
CollectionImageRaw
CollectionLogo
CollectionPublicImage
)