import discord from discord import app_commands from cash import user_cash, save_database @app_commands.command(name="database", description="database") async def database(interaction: discord.Interaction): save_database() try: with open("database.txt", "r") as f: content = f.read().strip() if content: formatted_content = "\n".join(content.split("\n")) await interaction.response.send_message(f" database:\n```\n{formatted_content}\n```") else: await interaction.response.send_message("The database is empty.") except FileNotFoundError: await interaction.response.send_message("l.")