1use nargo_ir::IRModule; 2use nargo_types::Result; 3 4pub trait Backend { 5 type Output; 6 fn generate(&self, ir: &IRModule) -> Result<Self::Output>; 7} 8 9// 其他后端已迁移到 nargo-bundler