aprsd/aprsd/threads/__init__.py

11 lines
274 B
Python

import queue
# Make these available to anyone importing
# aprsd.threads
from .aprsd import APRSDThread, APRSDThreadList # noqa: F401
from .keep_alive import KeepAliveThread # noqa: F401
from .rx import APRSDRXThread # noqa: F401
packet_queue = queue.Queue(maxsize=20)