mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-13 02:17:25 +01:00
17 lines
485 B
Go
17 lines
485 B
Go
package graph
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/ClusterCockpit/cc-jobarchive/graph/model"
|
|
)
|
|
|
|
func (r *queryResolver) JobMetricAverages(ctx context.Context, filter model.JobFilterList, metrics []*string) ([][]*float64, error) {
|
|
return nil, errors.New("unimplemented")
|
|
}
|
|
|
|
func (r *queryResolver) RooflineHeatmap(ctx context.Context, filter model.JobFilterList, rows, cols int, minX, minY, maxX, maxY float64) ([][]float64, error) {
|
|
return nil, errors.New("unimplemented")
|
|
}
|