13 lines
378 B
Go
13 lines
378 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"git.intra.yksa.space/gsn/predictor/internal/pkg/ds"
|
|
"git.intra.yksa.space/gsn/predictor/internal/pkg/errcodes"
|
|
)
|
|
|
|
func (s *Service) PerformPrediction(ctx context.Context, params ds.PredictionParameters) ([]ds.PredicitonResult, error) {
|
|
return nil, errcodes.New(http.StatusNotImplemented, "not implemented", "please wait")
|
|
}
|