mirror of
https://github.com/Xtao-Labs/misskey2telegram.git
synced 2024-11-23 06:07:17 +00:00
21 lines
439 B
Python
21 lines
439 B
Python
from mipa.ext import commands
|
|
from mipa.router import Router
|
|
from mipac import Note
|
|
|
|
from defs.misskey import send_update
|
|
from glover import admin
|
|
|
|
|
|
class MisskeyBot(commands.Bot):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
async def on_ready(self, ws):
|
|
await Router(ws).connect_channel(["main", "home"])
|
|
|
|
async def on_message(self, note: Note):
|
|
await send_update(admin, note)
|
|
|
|
|
|
misskey_bot = MisskeyBot()
|