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
9
10
11
12
//! GitHub issue creation from TODO comments.
//!
//! Use [`GitHubClient`] to create issues and detect duplicates. Issues are
//! deduplicated by title and by embedded TODO ID in the issue body.

pub mod client;
pub mod error;
pub mod types;

pub use client::GitHubClient;
pub use error::TowlGitHubError;
pub use types::CreatedIssue;