12 lines
280 B
Go
12 lines
280 B
Go
package profile
|
|
|
|
import (
|
|
"context"
|
|
"gitea.maximumdirect.net/eric/scriptorium/internal/domain"
|
|
)
|
|
|
|
// Repository handles loading and storing prompt profiles.
|
|
type Repository interface {
|
|
GetProfile(ctx context.Context, id string, version string) (*domain.PromptProfile, error)
|
|
}
|