-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathconfidence.ts
52 lines (50 loc) · 1.3 KB
/
confidence.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import ConfidenceSvg from '@site/static/img/confidence-no-fill.svg';
import { Provider } from '.';
export const Confidence: Provider = {
name: 'Confidence by Spotify',
logo: ConfidenceSvg,
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-js',
category: ['Server'],
},
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-js',
category: ['Client'],
},
{
technology: 'Java',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-java',
category: ['Server'],
},
{
technology: 'Kotlin',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-android',
category: ['Client'],
},
{
technology: 'Swift',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-swift',
category: ['Client'],
},
{
technology: 'Python',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-python',
category: ['Server'],
},
{
technology: 'Go',
vendorOfficial: true,
href: 'https://github.com/spotify/confidence-sdk-go',
category: ['Server'],
},
],
};