aboutsummaryrefslogtreecommitdiff
path: root/src/worker/notmuch/mod.rs
blob: 1cc39a9cd25f03bcf31134607c1836c5c2f325f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 Robin Jarry

use crate::worker::Backend;

pub struct NotmuchBackend {}

pub fn new() -> NotmuchBackend {
    NotmuchBackend {}
}

impl Backend for NotmuchBackend {}