forked from gsn/predictor
11 lines
225 B
Go
11 lines
225 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.intra.yksa.space/gsn/predictor/internal/pkg/ds"
|
|
)
|
|
|
|
type Service interface {
|
|
PerformPrediction(ctx context.Context, params ds.PredictionParameters) ([]ds.PredicitonResult, error)
|
|
}
|