-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathfeatbit.ts
33 lines (32 loc) · 894 Bytes
/
featbit.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import FeatBitSvg from '@site/static/img/featbit-no-fill.svg';
import { Provider } from '.';
export const FeatBit: Provider = {
name: 'FeatBit',
logo: FeatBitSvg,
technologies: [
{
technology: 'Java',
vendorOfficial: true,
href: 'https://github.com/featbit/featbit-openfeature-provider-java-server',
category: ['Server'],
},
{
technology: '.NET',
vendorOfficial: true,
href: 'https://github.com/featbit/openfeature-provider-dotnet-server',
category: ['Server'],
},
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/featbit/openfeature-provider-node-server',
category: ['Server'],
},
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/featbit/openfeature-provider-js-client',
category: ['Client'],
},
],
};