social-dl/app/__init__.py
anonymousx97 89e387f2c6 v2.4.0
Whats New:
• New conversation module
• New Ban-unban, Kick, Mute-Unmute module

Fixes:
• Instagram params bug fix.
• Follow snake_case for gallery_dl

Type Hints and many more misc changes.
2023-10-23 12:48:11 +05:30

18 lines
320 B
Python

import os
from dotenv import load_dotenv
load_dotenv("config.env")
# isort: skip
from .config import Config # noqa
from app.core.message import Message # noqa
from .core.client import BOT # noqa
if "com.termux" not in os.environ.get("PATH", ""):
import uvloop # isort:skip
uvloop.install()
bot = BOT()