1b5d527521
This PR adds the internal reporting state to the `internal/counters/config` read endpoint: * reporting_enabled * billing_start_timestamp
11 lines
139 B
Go
11 lines
139 B
Go
//go:build !enterprise
|
|
|
|
package vault
|
|
|
|
import "time"
|
|
|
|
// CensusAgent is a stub for OSS
|
|
type CensusAgent struct {
|
|
billingStart time.Time
|
|
}
|