Spaces:
Building
Building
Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ from petroll import petroll
|
|
9 |
from cash import cash
|
10 |
from dice import dice
|
11 |
from admincash import admincash
|
|
|
12 |
|
13 |
app = FastAPI()
|
14 |
intents = discord.Intents.default()
|
@@ -25,6 +26,7 @@ tree.add_command(petroll)
|
|
25 |
tree.add_command(cash)
|
26 |
tree.add_command(dice)
|
27 |
tree.add_command(admincash)
|
|
|
28 |
|
29 |
@bot.event
|
30 |
async def on_ready():
|
|
|
9 |
from cash import cash
|
10 |
from dice import dice
|
11 |
from admincash import admincash
|
12 |
+
from shop import shop
|
13 |
|
14 |
app = FastAPI()
|
15 |
intents = discord.Intents.default()
|
|
|
26 |
tree.add_command(cash)
|
27 |
tree.add_command(dice)
|
28 |
tree.add_command(admincash)
|
29 |
+
tree.add_command(shop)
|
30 |
|
31 |
@bot.event
|
32 |
async def on_ready():
|