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:
parent
633f8d0183
commit
301c9c9c42
1 changed files with 12 additions and 3 deletions
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue