diff --git a/Github/main.py b/Github/main.py index 0032eba..a80aef2 100644 --- a/Github/main.py +++ b/Github/main.py @@ -1,6 +1,15 @@ #== main.py ==# -import aiohttp -import asyncio +__all__ = ( + 'Github', +) -from . import http \ No newline at end of file +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) \ No newline at end of file