guesstimate/internal/graph/estimation_handler.go

12 lines
219 B
Go

package graph
import (
"context"
"forge.cadoles.com/Cadoles/guesstimate/internal/model"
)
func handleEstimations(ctx context.Context, task *model.Task) (*model.Estimations, error) {
return task.Estimations, nil
}