Skip to content

Commit 021bd09

Browse files
authored
🌹 Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΎΠ½ Π½Π΅ ΠΊΡ€Π°ΡˆΠΈΡ‚ΡΡ, Π° ΡƒΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Π½Π° ΠΎΡˆΠΈΠ±ΠΊΡƒ
Π”ΠΎΠ±Π°Π²ΠΈΠ» ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Ρ‡ΠΈΠΊ ошибок
1 parent 3a749ba commit 021bd09

File tree

5 files changed

+740
-681
lines changed

5 files changed

+740
-681
lines changed

β€ŽConfig.csβ€Ž

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
1-
ο»Ώnamespace DonationIntegration
2-
{
3-
class Config
4-
{
5-
/*
6-
Here I`m putting some configurations for our plugin
7-
I will make an ini config in future
8-
DO NOT TOUCH ACCESS TOKEN AND WHAT'S BELOW IT
9-
*/
10-
11-
public static string client_id = ""; // You can change it to your own
12-
public static string client_secret = ""; // You can change it to your own
13-
public static string redirect_URL = ""; // You can change it to your own
14-
15-
public static bool bDebug = false;
16-
17-
public static string authCode = "";
18-
public static string access_token = "";
19-
public static string refresh_token = "";
20-
21-
public static string channel_id = "";
22-
public static string socketClient_id = "";
23-
public static string channelConnection_token = "";
24-
}
25-
}
1+
ο»Ώnamespace StreamIntegration
2+
{
3+
class Config
4+
{
5+
/*
6+
Here I`m putting some configurations for our plugin
7+
I will make an ini config in future
8+
DO NOT TOUCH ACCESS TOKEN AND WHAT'S BELOW IT
9+
*/
10+
11+
public static string client_id = ""; // You can change it to your own
12+
public static string client_secret = ""; // You can change it to your own
13+
public static string redirect_URL = ""; // You can change it to your own
14+
15+
public static bool bDebug = false;
16+
17+
public static string authCode = "";
18+
public static string access_token = "";
19+
public static string refresh_token = "";
20+
21+
public static string channel_id = "";
22+
public static string socketClient_id = "";
23+
public static string channelConnection_token = "";
24+
25+
public static string plugin_tag = "[D-API] ";
26+
}
27+
}

0 commit comments

Comments
Β (0)