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