-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathofrep.ts
34 lines (33 loc) · 999 Bytes
/
ofrep.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
34
import OFLogo from '@site/static/img/logo-no-fill.svg';
import type { Provider } from '.';
export const OFREP: Provider = {
name: 'OFREP',
logo: OFLogo,
excludeFromLandingPage: true,
technologies: [
{
technology: 'JavaScript',
category: ['Client'],
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/ofrep-web',
vendorOfficial: true,
},
{
technology: 'JavaScript',
category: ['Server'],
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/ofrep',
vendorOfficial: true,
},
{
technology: 'Go',
category: ['Server'],
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/ofrep',
vendorOfficial: true,
},
{
technology: 'Python',
category: ['Server'],
href: 'https://github.com/open-feature/python-sdk-contrib/tree/main/providers/openfeature-provider-ofrep',
vendorOfficial: true,
},
],
};