mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
23 lines
418 B
JavaScript
23 lines
418 B
JavaScript
module.exports = [
|
|
{
|
|
"name": "featureX",
|
|
"status": "on",
|
|
"strategy": "default"
|
|
},
|
|
{
|
|
"name": "featureY",
|
|
"status": "off",
|
|
"strategy": "baz",
|
|
"parameters": {
|
|
"foo": "bar"
|
|
}
|
|
},
|
|
{
|
|
"name": "featureZ",
|
|
"status": "on",
|
|
"strategy": "baz",
|
|
"parameters": {
|
|
"foo": "rab"
|
|
}
|
|
}
|
|
]; |