refactor(workflow): remove unnecessary async declarations

This commit is contained in:
2026-03-31 13:57:32 +02:00
parent 1c983f3a8d
commit 61288e8f49
2 changed files with 64 additions and 76 deletions

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>;