Spaces:
Building
Building
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,7 @@ 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()
|
@@ -27,6 +28,7 @@ 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():
|
|
|
10 |
from dice import dice
|
11 |
from admincash import admincash
|
12 |
from shop import shop
|
13 |
+
from cashapp import cashapp # Add this line
|
14 |
|
15 |
app = FastAPI()
|
16 |
intents = discord.Intents.default()
|
|
|
28 |
tree.add_command(dice)
|
29 |
tree.add_command(admincash)
|
30 |
tree.add_command(shop)
|
31 |
+
tree.add_command(cashapp)
|
32 |
|
33 |
@bot.event
|
34 |
async def on_ready():
|