feat(blueprint): re-export Error

This commit is contained in:
rvcas 2024-04-03 19:13:02 -04:00 committed by Lucas
parent f50f7e42db
commit 9322020a5e
1 changed files with 2 additions and 1 deletions

View File

@ -4,13 +4,14 @@ pub mod parameter;
pub mod schema;
pub mod validator;
pub use error::Error;
use crate::{
config::{self, Config},
module::CheckedModules,
};
use aiken_lang::gen_uplc::CodeGenerator;
use definitions::Definitions;
use error::Error;
use schema::{Annotated, Schema};
use std::fmt::Debug;
use validator::Validator;