mirror of
https://github.com/stashapp/stash.git
synced 2026-04-11 11:51:00 -05:00
11 lines
213 B
Go
11 lines
213 B
Go
package api
|
|
|
|
import (
|
|
"github.com/stashapp/stash/pkg/models"
|
|
"github.com/stashapp/stash/pkg/sliceutil"
|
|
)
|
|
|
|
func stashIDsSliceToPtrSlice(v []models.StashID) []*models.StashID {
|
|
return sliceutil.ValuesToPtrs(v)
|
|
}
|