use serde::Deserialize;
use serde::Serialize;
use crate::build::contract::Contract as ContractBuild;
#[derive(Debug, Serialize, Deserialize)]
pub struct Output {
pub build: ContractBuild,
}
impl Output {
pub fn new(build: ContractBuild) -> Self {
Self { build }
}
}