stash/pkg/audio/service.go
Bob bb76aff557 Able to Generate
Lots of errors to fix and TODO notes
2026-04-22 21:43:27 -07:00

25 lines
614 B
Go

// TODO(audio): update this file
// Package audio provides the application logic for audio functionality.
// Most functionality is provided by [Service].
package audio
import (
"github.com/stashapp/stash/pkg/models"
"github.com/stashapp/stash/pkg/models/paths"
"github.com/stashapp/stash/pkg/plugin"
)
type Config interface {
GetAudioFileNamingAlgorithm() models.HashAlgorithm
}
type Service struct {
File models.FileReaderWriter
Repository models.AudioReaderWriter
MarkerRepository models.AudioMarkerReaderWriter
PluginCache *plugin.Cache
Paths *paths.Paths
Config Config
}