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 }