ttlcollections/__init__.py

6 lines
232 B
Python

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)