1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-17 14:35: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 ==#
import aiohttp
import asyncio
__all__ = (
'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)