mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-17 14:35:09 +00:00
15 lines
No EOL
281 B
Python
15 lines
No EOL
281 B
Python
#== main.py ==#
|
|
|
|
__all__ = (
|
|
'Github',
|
|
)
|
|
|
|
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) |