cortex/concerns.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 concerns and traits
9mod orm;
10pub use orm::*;
11
12mod mark_rerun;
13pub use mark_rerun::*;