13 lines
249 B
Go
13 lines
249 B
Go
package profile
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.maximumdirect.net/eric/scriptorium/internal/domain"
|
|
)
|
|
|
|
// Repository loads execution profiles.
|
|
type Repository interface {
|
|
GetProfile(ctx context.Context, id string) (*domain.ExecutionProfile, error)
|
|
}
|