commit_wizard/ports/
config.rs

1use anyhow::Result;
2pub trait ConfigPort {
3    fn get(&self, key: &str) -> Result<Option<String>>;
4}