jot-core 0.2.2

Core library for Jot personal task manager - extends joy-core with recurrence
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2026 Joydev GmbH (joydev.com)
// SPDX-License-Identifier: MIT

#[derive(Debug, thiserror::Error)]
pub enum JotError {
    #[error(transparent)]
    Joy(#[from] joy_core::error::JoyError),

    #[error("{0}")]
    Other(String),
}