21 lines
566 B
Python
21 lines
566 B
Python
from scwrypts.env import getenv
|
|
from scwrypts.http import get_request_client
|
|
|
|
REQUEST = None
|
|
|
|
def request(method, endpoint, **kwargs):
|
|
global REQUEST # pylint: disable=global-statement
|
|
|
|
if REQUEST is None:
|
|
headers = {}
|
|
|
|
if (token := getenv("DISCORD__BOT_TOKEN", required = False)) is not None:
|
|
headers['Authorization'] = f'Bot {token}'
|
|
|
|
REQUEST = get_request_client(
|
|
base_url = 'https://discord.com/api',
|
|
headers = headers,
|
|
)
|
|
|
|
return REQUEST(method, endpoint, **kwargs)
|