use uplc::ast::{NamedDeBruijn, Program}; #[derive(Debug)] pub struct Script { pub module: String, pub name: String, pub program: Program, } impl Script { pub fn new(module: String, name: String, program: Program) -> Script { Script { module, name, program, } } }