mirror of
https://github.com/RGBCube/VReplBot
synced 2025-07-24 23:17:44 +00:00
Rename repl to playground
This commit is contained in:
parent
fdeb115212
commit
b787bb4fd9
1 changed files with 4 additions and 4 deletions
|
@ -26,10 +26,10 @@ async def get_message_content(channel: TextChannel, ref: MessageReference) -> st
|
||||||
return message.content
|
return message.content
|
||||||
|
|
||||||
|
|
||||||
class REPL(
|
class Playground(
|
||||||
Cog,
|
Cog,
|
||||||
name = "REPL",
|
name = "Playground",
|
||||||
description = "REPL (Read, Eval, Print, Loop) commands.",
|
description = "V Playground commands.",
|
||||||
):
|
):
|
||||||
def __init__(self, bot: ReplBot) -> None:
|
def __init__(self, bot: ReplBot) -> None:
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
@ -138,4 +138,4 @@ class REPL(
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot: ReplBot) -> None:
|
async def setup(bot: ReplBot) -> None:
|
||||||
await bot.add_cog(REPL(bot))
|
await bot.add_cog(Playground(bot))
|
Loading…
Add table
Add a link
Reference in a new issue