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
// Copyright 2015-2018 Deyan Ginev. See the LICENSE
// file at the top-level directory of this distribution.
//
// Licensed under the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>.
// This file may not be copied, modified, or distributed
// except according to those terms.

//! Backend models and traits for the `CorTeX` "Task store"

mod tasks;
pub use tasks::*;

mod messages;
pub use messages::*;

mod worker_metadata;
pub use worker_metadata::*;

mod services;
pub use services::*;

mod corpora;
pub use corpora::*;

mod historical_runs;
pub use historical_runs::*;