mirror of https://github.com/stashapp/stash.git
13 lines
299 B
Go
13 lines
299 B
Go
package performer
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
type NameFinderCreator interface {
|
|
FindByNames(ctx context.Context, names []string, nocase bool) ([]*models.Performer, error)
|
|
Create(ctx context.Context, newPerformer models.Performer) (*models.Performer, error)
|
|
}
|