Skip to content

Commit

Permalink
add: add main()
Browse files Browse the repository at this point in the history
  • Loading branch information
Colk-tech committed Dec 19, 2024
1 parent d0d0435 commit bb12d37
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from config import PunishBotConfig
from src.main import PunishBot


def main():
# noinspection PyArgumentList
config = PunishBotConfig()
bot = PunishBot(config)

bot.launch()


if __name__ == "__main__":
main()

0 comments on commit bb12d37

Please sign in to comment.