stash/pkg/image/service.go
WithoutPants b7799df2a6
Add package docs and project vision/goals (#5169)
* Add goals/design vision to contributing doc
* Add barebones package documentation
2024-08-28 09:01:39 +10:00

12 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
}