forgetop-core 1.2.0

Domain model, configuration, and keychain-backed token storage for forgetop. Internal crate: no API stability guarantees, use the `forgetop` binary instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! forgetop core: provider-neutral domain model, capability-scoped provider traits,
//! config + bindings, secret store, and the runtime services.

pub mod cache;
pub mod config;
pub mod diag;
pub mod domain;
pub mod error;
pub mod filter;
pub mod launchpad;
pub mod provider;
pub mod repo;
pub mod secret;
pub mod service;
pub mod setup;

pub use error::{Error, Result};