arcella_types/lib.rs
1// arcella/arcella-types/src/lib.rs
2//
3// Copyright (c) 2025 Alexey Rybakov, Arcella Team
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE>
6// or the MIT license <LICENSE-MIT>, at your option.
7// This file may not be copied, modified, or distributed
8// except according to those terms.
9
10pub mod alme;
11pub mod config;
12pub mod manifest;
13pub mod module_id;
14pub mod interface_list;
15pub mod spec;
16
17mod error;
18pub use error::{ArcellaError as ArcellaTypeError, ArcellaResult as ArcellaTypeResult};