mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
12 lines
138 B
Go
12 lines
138 B
Go
package api
|
|
|
|
import (
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
type BaseFile interface{}
|
|
|
|
type GalleryFile struct {
|
|
*models.BaseFile
|
|
}
|