cfait 1.0.8

Powerful, fast and elegant task / TODO manager. (GUI & TUI, CalDAV & local)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-3.0-or-later
// File: ./src/client/mod.rs
// Module declaration exporting the CalDAV client components.
pub mod auth;
pub mod cert;
pub mod core;
pub mod middleware;
pub mod redirect;
pub mod sync; // Restore this module

// Restore exports from local module
pub use crate::client::redirect::{FollowRedirectLayer, FollowRedirectService};

pub use crate::client::core::{GET_CTAG, RustyClient};