9 lines
226 B
Go
9 lines
226 B
Go
package config
|
|
|
|
// AutomatedTesting settings
|
|
type AutomatedTesting struct {
|
|
Enabled bool `json:"enabled"`
|
|
EnabledTests []string `json:"enabled_tests"`
|
|
MonthlyAllowance string `json:"monthly_allowance"`
|
|
}
|