9 lines
298 B
Python
9 lines
298 B
Python
# Signal 'address book'. Refer to groups with `G:[base64_encoded_group_id]`, eg.
|
|
# `G:UGVyZHUgIQo=`.
|
|
RECIPIENTS = {"foo": ["+42..."]} # FIXME
|
|
|
|
# Recipient from the dict above to send to by default
|
|
DEFAULT_RECIPIENT = "foo" # FIXME
|
|
|
|
# Unix socket location
|
|
SIGNAL_SOCKET = "/run/signal-cli/socket"
|