summaryrefslogtreecommitdiffstats
path: root/src/core/src/runtime.rs
blob: 331dbbbe6e7df51a2bbbc4931f16126268c249b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Git Interactive Rebase Tool - Runtime
//!
//! # Description
//! This module is used to handle the application lifecycles and management of threads.
//!
//! ## Test Utilities
//! To facilitate testing the usages of this crate, a set of testing utilities are provided. Since
//! these utilities are not tested, and often are optimized for developer experience than
//! performance should only be used in test code.

mod errors;
mod installer;
mod notifier;
#[allow(clippy::module_inception)]
mod runtime;
mod status;
#[cfg(test)]
pub(crate) mod testutils;
mod thread_statuses;
mod threadable;

pub(crate) use crate::runtime::{
	errors::RuntimeError,
	installer::Installer,
	notifier::Notifier,
	runtime::Runtime,
	status::Status,
	thread_statuses::ThreadStatuses,
	threadable::Threadable,
};