14 lines
210 B
Go
14 lines
210 B
Go
|
package mediafiller
|
||
|
|
||
|
import "service/dbstruct"
|
||
|
|
||
|
type MediaFillable interface {
|
||
|
GetImageIds() []int64
|
||
|
|
||
|
GetVideoIds() []int64
|
||
|
|
||
|
SetImages(images []*dbstruct.ToCImage)
|
||
|
|
||
|
SetVideos(images []*dbstruct.ToCVideo)
|
||
|
}
|