mirror of
https://github.com/pdxlocations/contact.git
synced 2026-03-28 17:12:35 +01:00
16 lines
329 B
Python
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 = "*"
|