1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 15:05:08 +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 ==#
__all__ = (
'Github',
)
import aiohttp import aiohttp
import asyncio
from . import http 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)