use crate::errors::Result;
use std::path::Path;
pub struct NargoCompiler;
impl NargoCompiler {
pub fn new() -> Self {
Self
}
pub fn compile(&self, source: &str) -> Result<String> {
Ok(source.to_string())
}
}
impl Default for NargoCompiler {
fn default() -> Self {
Self::new()
}
}