mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
11 lines
138 B
Go
11 lines
138 B
Go
package api
|
|
|
|
import (
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
type BaseFile interface{}
|
|
|
|
type GalleryFile struct {
|
|
*models.BaseFile
|
|
}
|