1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Panorama
//! ===

#![deny(missing_docs)]

#[macro_use]
extern crate anyhow;
#[macro_use]
extern crate crossterm;
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde;

pub mod config;
pub mod mail;
pub mod ui;

/// A cloneable type that allows sending an exit-"signal" to stop the application.
pub type ExitSender = tokio::sync::oneshot::Sender<()>;