Spaces:
Building
Building
Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,7 @@ from admincash import admincash
|
|
12 |
from shop import shop
|
13 |
from cashapp import cashapp
|
14 |
from database import database
|
|
|
15 |
|
16 |
app = FastAPI()
|
17 |
intents = discord.Intents.default()
|
@@ -31,6 +32,7 @@ tree.add_command(admincash)
|
|
31 |
tree.add_command(shop)
|
32 |
tree.add_command(cashapp)
|
33 |
tree.add_command(database)
|
|
|
34 |
|
35 |
@bot.event
|
36 |
async def on_ready():
|
|
|
12 |
from shop import shop
|
13 |
from cashapp import cashapp
|
14 |
from database import database
|
15 |
+
from sportbet import sportbet
|
16 |
|
17 |
app = FastAPI()
|
18 |
intents = discord.Intents.default()
|
|
|
32 |
tree.add_command(shop)
|
33 |
tree.add_command(cashapp)
|
34 |
tree.add_command(database)
|
35 |
+
tree.add_command(sportbet)
|
36 |
|
37 |
@bot.event
|
38 |
async def on_ready():
|