commit-wizard 0.0.1

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::ports::config::ConfigPort;
use anyhow::Result;

pub struct FileConfig;

impl ConfigPort for FileConfig {
    fn get(&self, _key: &str) -> Result<Option<String>> {
        Ok(None)
    }
}