commands: Add initial device manipulation command.
This commit is contained in:
parent
4bf0e4be5c
commit
35f47547d2
4 changed files with 133 additions and 2 deletions
5
main.py
5
main.py
|
|
@ -45,7 +45,7 @@ from matrix.commands import (hook_commands, hook_page_up,
|
|||
matrix_join_command_cb, matrix_kick_command_cb,
|
||||
matrix_me_command_cb, matrix_part_command_cb,
|
||||
matrix_redact_command_cb, matrix_topic_command_cb,
|
||||
matrix_olm_command_cb)
|
||||
matrix_olm_command_cb, matrix_devices_command_cb)
|
||||
from matrix.completion import (init_completion, matrix_command_completion_cb,
|
||||
matrix_debug_completion_cb,
|
||||
matrix_message_completion_cb,
|
||||
|
|
@ -53,7 +53,8 @@ from matrix.completion import (init_completion, matrix_command_completion_cb,
|
|||
matrix_olm_user_completion_cb,
|
||||
matrix_server_command_completion_cb,
|
||||
matrix_server_completion_cb,
|
||||
matrix_user_completion_cb)
|
||||
matrix_user_completion_cb,
|
||||
matrix_own_devices_completion_cb)
|
||||
from matrix.config import (MatrixConfig, config_log_category_cb,
|
||||
config_log_level_cb, config_server_buffer_cb,
|
||||
matrix_config_reload_cb, config_pgup_cb)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue