ttlcollections/__init__.py

6 lines
232 B
Python
Raw Normal View History

2020-05-31 15:22:54 +02:00
from .core.structures import TTLQueue, TTLStack
from .core.errors import QueueEmpty, StackEmpty, QueueFull, StackFull
__all__ = ["TTLQueue", "TTLStack", "QueueEmpty", "QueueFull", "StackEmpty", "StackFull"]
__version__ = (1, 0, 0)