1use crate::ports::config::ConfigPort; 2use anyhow::Result; 3 4pub struct FileConfig; 5 6impl ConfigPort for FileConfig { 7 fn get(&self, _key: &str) -> Result<Option<String>> { 8 Ok(None) 9 } 10}