Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bitgetlimited
GitHub Repository: bitgetlimited/v3-bitget-api-sdk
Path: blob/master/bitget-php-sdk-api/src/internal/BitgetRestClient.php
518 views
1
<?php
2
3
namespace bitget\internal;
4
5
6
class BitgetRestClient
7
{
8
9
public function getMixClient()
10
{
11
return new BitgetMixV1Client();
12
}
13
14
public function getSpotClient()
15
{
16
return new BitgetSpotV1Client();
17
}
18
19
public function getMixV1Client()
20
{
21
return new BitgetMixV1Client();
22
}
23
24
public function getSpotV1Client()
25
{
26
return new BitgetSpotV1Client();
27
}
28
29
public function getMixV2Client()
30
{
31
return new BitgetMixV2Client();
32
}
33
34
public function getSpotV2Client()
35
{
36
return new BitgetSpotV2Client();
37
}
38
39
}
40
41
42