arama 0.36.1

Image / video viewer and similarity finder powered by offline AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
use iced::Subscription;

use super::{App, message::Message};

impl App {
    pub fn subscription(&self) -> Subscription<Message> {
        Subscription::batch([snora::toast::subscription(&self.toasts, || {
            Message::ToastSweep
        })])
    }
}