mirror of
https://github.com/anonymousx97/social-dl.git
synced 2025-02-20 11:13:19 +08:00
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.
18 lines
320 B
Python
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()
|