stash/pkg/image/service.go

13 lines
280 B
Go

// Package image provides the application logic for images.
// The functionality is exposed via the [Service] type.
package image
import (
"github.com/stashapp/stash/pkg/models"
)
type Service struct {
File models.FileReaderWriter
Repository models.ImageReaderWriter
}