9 lines
278 B
Python
9 lines
278 B
Python
from .from_matrix import (matrix_reply_to_telegram, matrix_to_telegram, matrix_text_to_telegram,
|
|
init_mx)
|
|
from .from_telegram import (telegram_reply_to_matrix, telegram_to_matrix, init_tg)
|
|
|
|
|
|
def init(context):
|
|
init_mx(context)
|
|
init_tg(context)
|