10 lines
261 B
Go
10 lines
261 B
Go
package constants
|
|
|
|
// Budget allocation of revenue used by the parent category cut-off report.
|
|
// The three shares are expected to add up to 100.
|
|
const (
|
|
BudgetLimitPurchasePercent = 60.0
|
|
BudgetLimitOwnerPercent = 20.0
|
|
BudgetLimitTeamPercent = 20.0
|
|
)
|