mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
13 lines
279 B
Go
13 lines
279 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) error
|
|
}
|