mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +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"
|
||
|
}
|
||
|
}
|
||
|
];
|