photoprism/pkg/media/source.go
Michael Mayer 149f5e5731 CI: Apply Go linter recommendations to remaining "pkg/..." code #5330
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-11-22 16:14:43 +01:00

12 lines
281 B
Go

package media
// Src identifies a media source.
type Src = string
// Data source types.
const (
// SrcLocal indicates the media originates from local storage.
SrcLocal Src = "local"
// SrcRemote indicates the media originates from a remote source.
SrcRemote Src = "remote"
)