Files
contact/globals.py
Russell Schmidt 838551dffc Add display of message ack/nak
Note that this is not (yet) saved in the DB so won't persist
2025-01-14 12:00:25 -06:00

16 lines
329 B
Python

all_messages = {}
channel_list = []
notifications = set()
packet_buffer = []
myNodeNum = 0
selected_channel = 0
selected_message = 0
selected_node = 0
current_window = 0
interface = None
display_log = False
db_file_path = "client.db"
message_prefix = ">>"
sent_message_prefix = message_prefix + " Sent"
notification_symbol = "*"