10 lines
325 B
Python
10 lines
325 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)
|
|
from .. import context as c
|
|
|
|
|
|
def init(context: c.Context) -> None:
|
|
init_mx(context)
|
|
init_tg(context)
|