File tree 1 file changed +0
-18
lines changed 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 1
- import json
2
- import libsql_experimental as libsql
3
- import os
4
- import time
5
- from dotenv import load_dotenv
6
- import discord
7
1
from discord .ext import commands
8
2
9
- load_dotenv ()
10
-
11
- WELCOME_CHANNEL_ID : str = os .getenv ("WELCOME_CHANNEL_ID" ) or ""
12
- TURSO_URL : str = os .getenv ("TURSO_URL" ) or ""
13
- TURSO_TOKEN : str = os .getenv ("TURSO_TOKEN" ) or ""
14
-
15
- INVITE_XP = 50
16
-
17
3
socials = {
18
4
"youtube" : "https://www.youtube.com/channel/UCEztUC2WwKEDkVl9c6oUoTw?sub_confirmation=1" ,
19
5
"udemy" : "https://www.udemy.com/user/thomas-collart/?referralCode=F0901265E01C7FDADABC" ,
23
9
"linkedin" : "https://linkedin.com/in/thomascollart/"
24
10
}
25
11
26
-
27
12
class Social (commands .Cog ):
28
13
def __init__ (self , bot ):
29
14
self .bot = bot
@@ -54,8 +39,5 @@ async def youtube(self, ctx):
54
39
await ctx .send (socials ["youtube" ])
55
40
56
41
57
-
58
-
59
-
60
42
async def setup (bot ):
61
43
await bot .add_cog (Social (bot ))
You can’t perform that action at this time.
0 commit comments