2020-04-21 04:41:55 +03:00
|
|
|
//! Module containing structs and types that make up an aleo program.
|
2020-03-28 05:00:19 +03:00
|
|
|
//!
|
2020-04-21 04:41:55 +03:00
|
|
|
//! @file aleo_program/mod.rs
|
2020-03-28 05:00:19 +03:00
|
|
|
//! @author Collin Chin <collin@aleo.org>
|
|
|
|
//! @date 2020
|
|
|
|
|
2020-03-31 23:47:51 +03:00
|
|
|
pub mod constraints;
|
|
|
|
pub use self::constraints::*;
|
2020-03-28 05:00:19 +03:00
|
|
|
|
2020-04-17 22:51:02 +03:00
|
|
|
pub mod imports;
|
|
|
|
pub use self::imports::*;
|
|
|
|
|
2020-04-21 07:51:57 +03:00
|
|
|
pub mod types;
|
|
|
|
pub use self::types::*;
|
|
|
|
|
2020-03-28 05:00:19 +03:00
|
|
|
pub mod types_display;
|
|
|
|
pub use self::types_display::*;
|
|
|
|
|
|
|
|
pub mod types_from;
|
|
|
|
pub use self::types_from::*;
|