mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
9 lines
161 B
Go
9 lines
161 B
Go
package mpd
|
|
|
|
// Validate checks for incomplete MPD object
|
|
func (m *MPD) Validate() error {
|
|
if m.Profiles == nil {
|
|
return ErrNoDASHProfileSet
|
|
}
|
|
return nil
|
|
}
|