mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 10:13:54 -06: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)
|
|
}
|