mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-22 17:30:10 +00:00
11 lines
345 B
Python
11 lines
345 B
Python
|
from pagermaid import bot
|
||
|
from pagermaid import logs
|
||
|
from pagermaid.single_utils import sqlite
|
||
|
from pagermaid.scheduler import scheduler
|
||
|
from pagermaid.utils import client
|
||
|
|
||
|
|
||
|
def get(name: str):
|
||
|
data = {"Client": bot, "Logger": logs, "SqliteDict": sqlite, "AsyncIOScheduler": scheduler, "AsyncClient": client}
|
||
|
return data.get(name, None)
|