commit_wizard/ports/
editor.rs

1use anyhow::Result;
2pub trait EditorPort {
3    fn edit(&self, initial: &str) -> Result<String>;
4}