Cleanup module

This commit is contained in:
2023-03-15 23:14:57 -04:00
parent ca09506e7d
commit 510759a005
2 changed files with 28 additions and 27 deletions

View File

@@ -1,2 +1,28 @@
# Handle major modules of package
import * from ./__main__
import nextcord as nc
from nextcord.ext import commands
from typing import Optional
import os
bot = commands.Bot()
@bot.event
async def on_ready():
print(f'We have logged in as {bot.user}')
@bot.slash_command(name="summarize", description="Summarize all or part of an article", dm_permission=True)
async def summarize(
interaction: nc.Interaction,
article: str,
part: Optional[str] = nc.SlashOption(required=False)
):
print("Will summarize article.")
def main():
# TODO: Import bot token from env
bot.run(os.environ["DISCORD_TOKEN"])
if __name__ == "__main__":
print("Handy Helper has Begun!")
main()

View File

@@ -1,25 +0,0 @@
import nextcord
from nextcord.ext import commands
import os
bot = commands.Bot()
@bot.event
async def on_ready():
print(f'We have logged in as {bot.user}')
@bot.slash_command(name="summarize", description="Summarize all or part of an article", dm_permission=True)
async def summarize(
interaction: nextcord.Interaction,
article: str,
part: Optional[str] = SlashOption(required=False)
):
print("Will summarize article.")
def main():
# TODO: Import bot token from env
bot.run(os.environ["DISCORD_TOKEN"])
if __name__ == "__main__":
print("Handy Helper has Begun!")