mod builder;
use yansi::Color;
use crate::files::FileId;
use std::ops::Range;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Label<Id: FileId> {
pub(crate) file: Id,
pub(crate) span: Range<usize>,
pub(crate) color: Color,
pub(crate) content: Option<String>,
}