REF: Changed EONA to Elysia
DOC: Added Elysia's image DOC: Updated everything to reflected the new naming.
This commit is contained in:
parent
5136842c6c
commit
14ba9ceb98
BIN
Elysia.png
Normal file
BIN
Elysia.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 360 KiB |
@ -1,3 +1,3 @@
|
||||
# Eona
|
||||
|
||||
Eona is (to start) a birthday bot for kenny
|
||||
# Elysia
|
||||
![Elysia](/Elysia.png)
|
||||
Elysia is a birthday bot (for now) designed by advtech.bots@gmail.com, it is mainly to be used by the Kennevo's Chaos Community Discord Server. Elysia is open source and can be found [here](https://giteas.fullmooncyberworks.com/advtech/Elysia) and [on GitHub](https://github.com/advtech/Elysia).
|
@ -7,13 +7,13 @@ logging.basicConfig(
|
||||
datefmt="%Y-%m-%d %H:%M:%S",
|
||||
)
|
||||
|
||||
log_file = "logs/EONA.log"
|
||||
log_file = "logs/Elysia.log"
|
||||
handler = RotatingFileHandler(log_file, maxBytes=1e6, backupCount=5)
|
||||
formatter = logging.Formatter(
|
||||
"%(asctime)s:%(levelname)s:%(name)s: %(message)s")
|
||||
handler.setFormatter(formatter)
|
||||
|
||||
|
||||
logger = logging.getLogger("EONA")
|
||||
logger = logging.getLogger("Elysia")
|
||||
logger.addHandler(handler)
|
||||
logger.setLevel(logging.INFO)
|
||||
|
2
main.py
2
main.py
@ -2,7 +2,7 @@ from config import config
|
||||
import discord
|
||||
from logger import logger
|
||||
|
||||
logger.info("Starting EONA...")
|
||||
logger.info("Starting Elysia...")
|
||||
|
||||
TOKEN = config["TOKEN"]
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Privacy Policy
|
||||
|
||||
## Introduction
|
||||
Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **[Your Bot Name]**. By using the bot, you agree to the collection and use of information in accordance with this policy.
|
||||
Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **Elysia**. By using the bot, you agree to the collection and use of information in accordance with this policy.
|
||||
|
||||
## Data We Collect
|
||||
|
||||
|
2
tos.md
2
tos.md
@ -1,7 +1,7 @@
|
||||
# Terms of Service
|
||||
|
||||
## Introduction
|
||||
Welcome to **[Your Bot Name]**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully.
|
||||
Welcome to **Elysia**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully.
|
||||
|
||||
## Use of the Bot
|
||||
- **Compliance:** You agree to use the bot in compliance with all applicable laws and Discord's Terms of Service.
|
||||
|
@ -11,7 +11,7 @@ from user_data.data_access import DataAccessManager
|
||||
class Birthday:
|
||||
def __init__(self, client):
|
||||
self.client = client
|
||||
self.db_path = "data/EONA.db"
|
||||
self.db_path = "data/Elysia.db"
|
||||
self.logger = logger
|
||||
self.consent_manager = ConsentManager(self.db_path)
|
||||
self.data_access_manager = DataAccessManager(self.db_path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user