mirror of
https://gitlab.com/fabinfra/fabaccess/pyfabapi.git
synced 2025-03-12 06:41:42 +01:00
11 lines
237 B
Python
11 lines
237 B
Python
|
class Session:
|
||
|
"""
|
||
|
A connected API session
|
||
|
|
||
|
Implements housekeeping functionality around conneciton keep-alive and re-establishment.
|
||
|
"""
|
||
|
|
||
|
session = None
|
||
|
|
||
|
def __init__(self, session):
|
||
|
self.session = session
|