floe_core/profile/mod.rs
1mod parse;
2mod types;
3mod validate;
4
5pub use parse::{parse_profile, parse_profile_from_str};
6pub use types::{
7 ProfileConfig, ProfileExecution, ProfileMetadata, ProfileRunner, ProfileValidation,
8 PROFILE_API_VERSION, PROFILE_KIND,
9};
10pub use validate::{
11 detect_malformed_placeholder, detect_unresolved_placeholders, validate_merged_vars,
12 validate_profile,
13};