mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-12-27 05:49:04 +01:00
14 lines
291 B
Go
14 lines
291 B
Go
package graph
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/ClusterCockpit/cc-jobarchive/graph/model"
|
|
)
|
|
|
|
func (r *queryResolver) UserStats(ctx context.Context, from *time.Time, to *time.Time, clusterId *string) ([]*model.UserStats, error) {
|
|
return nil, errors.New("unimplemented")
|
|
}
|