towl 0.3.7

A fast CLI tool to scan codebases for TODO comments and output them in multiple formats
Documentation
1
2
3
4
5
6
7
8
use thiserror::Error;

/// Errors from the interactive terminal UI.
#[derive(Error, Debug)]
pub enum TowlTuiError {
    #[error("Terminal I/O error: {0}")]
    Io(#[from] std::io::Error),
}