aprsd/aprsd/threads/__init__.py

14 lines
315 B
Python
Raw Normal View History

import queue
# Make these available to anyone importing
# aprsd.threads
2022-07-06 19:39:41 -04:00
from .aprsd import APRSDThread, APRSDThreadList # noqa: F401
from .keep_alive import KeepAliveThread # noqa: F401
from .rx import APRSDRXThread # noqa: F401
rx_msg_queue = queue.Queue(maxsize=20)
msg_queues = {
"rx": rx_msg_queue,
}