thot_local/lib.rs
1#![feature(io_error_more)]
2//! # Thot Local
3//!
4//! This package contains local functionality and types of the Thot software suite.
5pub mod common;
6pub mod constants;
7pub mod project;
8pub mod result;
9pub mod runner;
10pub mod system;
11
12#[cfg(test)]
13#[path = "./lib_test.rs"]
14mod lib_test;