summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 73354d960774069f512a766f42c385cd45da5f49 (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
//! Internal library crate for witryna.
//!
//! This crate exposes modules for use by the binary and integration tests.
//! It is not intended for external consumption and has no stability guarantees.

pub(crate) mod build;
pub mod build_guard;
pub mod cleanup;
pub mod cli;
pub mod config;
pub mod git;
pub(crate) mod hook;
pub mod logger;
pub mod logs;
pub mod pipeline;
pub mod polling;
pub mod publish;
pub(crate) mod repo_config;
pub mod server;
pub mod state;
pub mod time;

#[cfg(any(test, feature = "integration"))]
pub mod test_support;