Skip to main content

cortex/
models.rs

1// Copyright 2015-2025 Deyan Ginev. See the LICENSE
2// file at the top-level directory of this distribution.
3//
4// Licensed under the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>.
5// This file may not be copied, modified, or distributed
6// except according to those terms.
7
8//! Backend models and traits for the `CorTeX` "Task store"
9
10mod tasks;
11pub use tasks::*;
12
13mod messages;
14pub use messages::*;
15
16mod worker_metadata;
17pub use worker_metadata::*;
18
19mod services;
20pub use services::*;
21
22mod corpora;
23pub use corpora::*;
24
25mod historical_runs;
26pub use historical_runs::*;
27
28mod historical_tasks;
29pub use historical_tasks::*;
30
31mod audit;
32pub use audit::*;
33
34mod webauthn;
35pub use webauthn::*;
36
37mod session;
38pub use session::*;