Rename the project to Wulkabot
This commit is contained in:
parent
5274ed002d
commit
7b43711da1
13 changed files with 39 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
# wulkanowy-bot
|
||||
# Wulkabot
|
||||
|
||||
Discord bot to help manage the Wulkanowy Discord server built with the
|
||||
[discord.py](https://github.com/Rapptz/discord.py) library
|
||||
|
@ -20,5 +20,5 @@ Discord bot to help manage the Wulkanowy Discord server built with the
|
|||
- Run the bot using
|
||||
|
||||
```
|
||||
poetry run python -m bot
|
||||
poetry run python -m wulkabot
|
||||
```
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
import pathlib
|
||||
|
||||
PATH = pathlib.Path(__file__).parent
|
|
@ -1,5 +1,5 @@
|
|||
[tool.poetry]
|
||||
name = "wulkanowy-bot"
|
||||
name = "wulkabot"
|
||||
version = "0.1.0"
|
||||
description = "Discord bot to help manage the Wulkanowy Discord server"
|
||||
authors = ["JelNiSław <jelnislaw@gmail.com>"]
|
||||
|
|
8
wulkabot/__init__.py
Normal file
8
wulkabot/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
||||
|
||||
import pathlib
|
||||
|
||||
PATH = pathlib.Path(__file__).parent
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
||||
|
||||
import pkgutil
|
||||
import types
|
||||
|
4
wulkabot/cogs/__init__.py
Normal file
4
wulkabot/cogs/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
||||
|
||||
import discord
|
||||
from discord import app_commands
|
||||
from discord.ext import commands
|
|
@ -1,3 +1,8 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
||||
|
||||
import json
|
||||
|
||||
import discord
|
4
wulkabot/cogs/utils/__init__.py
Normal file
4
wulkabot/cogs/utils/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
"""
|
||||
Wulkabot
|
||||
Copyright (C) 2022-present Stanisław Jelnicki
|
||||
"""
|
Loading…
Reference in a new issue