refactor: publicly expose error::Error

This commit is contained in:
graelo 2022-05-31 08:47:53 +02:00
parent 3bebad0da6
commit d2eb8f0e16
7 changed files with 9 additions and 9 deletions

View file

@ -2,7 +2,7 @@
//!
//! All patterns must have one capture group. The first group is used.
use crate::{error::Error, Result};
use crate::{Error, Result};
pub(super) const EXCLUDE_PATTERNS: [(&str, &str); 1] =
[("ansi_colors", r"[[:cntrl:]]\[([0-9]{1,2};)?([0-9]{1,2})?m")];