1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 06:55:09 +00:00

Added a skeleton class for the main entrypoint

This commit is contained in:
sudosnok 2022-03-26 18:17:45 +00:00
parent 633f8d0183
commit 301c9c9c42

View file

@ -1,6 +1,15 @@
#== main.py ==# #== main.py ==#
import aiohttp __all__ = (
import asyncio 'Github',
)
from . import http import aiohttp
from . import http
class Github:
async def start(self):
"""Main entry point to the wrapper, this creates the ClientSession."""
headers = {}
self._session = http.make_session(headers=headers)