From 301c9c9c424eb3c41faa2cbf4e97d84c30f29d82 Mon Sep 17 00:00:00 2001 From: sudosnok Date: Sat, 26 Mar 2022 18:17:45 +0000 Subject: [PATCH] Added a skeleton class for the main entrypoint --- Github/main.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) 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