(ctx context.Context)
| 3375 | } |
| 3376 | |
| 3377 | func (q *querier) GetDeploymentID(ctx context.Context) (string, error) { |
| 3378 | // No authz checks |
| 3379 | return q.db.GetDeploymentID(ctx) |
| 3380 | } |
| 3381 | |
| 3382 | func (q *querier) GetDeploymentWorkspaceAgentStats(ctx context.Context, createdAfter time.Time) (database.GetDeploymentWorkspaceAgentStatsRow, error) { |
| 3383 | return q.db.GetDeploymentWorkspaceAgentStats(ctx, createdAfter) |
nothing calls this directly
no test coverage detected