diff --git a/Dockerfile b/Dockerfile index 242bd60..5f57637 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,6 @@ RUN git clone https://github.com/coddrago/Heroku /data/Heroku WORKDIR /data/Heroku RUN pip install --no-warn-script-location --no-cache-dir -U -r requirements.txt -RUN pip install --no-warn-script-location --no-cache-dir -U -r optional_requirements.txt RUN git reset --hard diff --git a/heroku/modules/inline_stuff.py b/heroku/modules/inline_stuff.py index 4b7474d..3e8a0ef 100644 --- a/heroku/modules/inline_stuff.py +++ b/heroku/modules/inline_stuff.py @@ -132,3 +132,9 @@ class InlineStuff(loader.Module): "https://raw.githubusercontent.com/coddrago/assets/refs/heads/main/heroku/start_cmd.png", caption=self.strings("this_is_heroku"), ) + + async def aiogram_watcher(self, message: BotInlineMessage): + if message.text != "/profile": + return + + await message.answer("test") \ No newline at end of file