Skip to content

Commit 4b66872

Browse files
feat: add Prefab community Go provider (#1311)
## This PR - add community Prefab Go provider ### Related Issues closes #695 Signed-off-by: Jonathan Norris <[email protected]>
1 parent 7ca1c9e commit 4b66872

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { Kameleoon } from './kameleoon';
1616
import { LaunchDarkly } from './launchdarkly';
1717
import { MDBRules } from './mdb-rules';
1818
import { PostHog } from './posthog';
19+
import { Prefab } from './prefab';
1920
import { Reflag } from './reflag';
2021
import { Split } from './split';
2122
import { Unleash } from './unleash';
@@ -68,6 +69,7 @@ export const PROVIDERS: Provider[] = [
6869
LaunchDarkly,
6970
MDBRules,
7071
PostHog,
72+
Prefab,
7173
Reflag,
7274
Split,
7375
Statsig,

src/datasets/providers/prefab.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import PrefabSvg from '@site/static/img/prefab-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const Prefab: Provider = {
5+
name: 'Prefab',
6+
logo: PrefabSvg,
7+
technologies: [
8+
{
9+
technology: 'Go',
10+
vendorOfficial: false,
11+
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/prefab',
12+
category: ['Server'],
13+
},
14+
],
15+
};
16+

static/img/prefab-no-fill.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)