refactor(workflow): remove unnecessary async declarations

This commit is contained in:
2026-03-31 13:57:32 +02:00
parent 825127dbdb
commit 51cf5bae4e
2 changed files with 64 additions and 76 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ use crate::{
///
/// Implement this trait to supply a custom front-end (interactive TUI, mock,
/// headless, etc.) to [`CommitWorkflow`](super::CommitWorkflow).
pub trait Prompter: Send + Sync {
pub trait Prompter {
/// Prompt the user to select a commit type
fn select_commit_type(&self) -> Result<CommitType, Error>;