notnow 0.3.10

A terminal based task and TODO management software.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2022 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

//! A module containing functionality for the different supported
//! serialization and deserialization backends.

mod backend;
mod ical;
mod json;

pub use backend::Backend;
pub use ical::iCal;
pub use json::Json;