linear-tui 0.13.0

A TUI client for Linear.app — manage issues, projects, and cycles from your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The systems outside linear-tui that it calls on.
//!
//! - [`linear`]: Linear's GraphQL API, and signing in to it.
//! - [`herdr`]: the herdr plugin, for the actions that exist only inside it.
//! - [`disk`]: what linear-tui keeps in files: the view snapshots.
//! - [`editor`]: the user's `$EDITOR`, for writing a description.
//! - [`dispatch`]: carrying out a use case's `Request` through them.
//!
//! It depends on `crate::core`, never on `crate::interface`.

pub mod disk;
pub mod dispatch;
pub mod editor;
pub mod herdr;
pub mod linear;