2020-09-11 09:19:18 +02:00
|
|
|
package graph
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"forge.cadoles.com/Cadoles/guesstimate/internal/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
func handleEstimations(ctx context.Context, task *model.Task) (*model.Estimations, error) {
|
2020-09-11 11:55:22 +02:00
|
|
|
return task.Estimations, nil
|
2020-09-11 09:19:18 +02:00
|
|
|
}
|