open-vault/vault/census.go
Mike Palmiotto 1b5d527521
api: Add reporting fields to activitylog config endpoint (#20086)
This PR adds the internal reporting state to the
`internal/counters/config` read endpoint:
* reporting_enabled
* billing_start_timestamp
2023-04-12 12:02:28 -04:00

11 lines
139 B
Go

//go:build !enterprise
package vault
import "time"
// CensusAgent is a stub for OSS
type CensusAgent struct {
billingStart time.Time
}