Built new error module to hold document name.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-02-12 12:24:20 -05:00
parent 564602b766
commit 7ff9ca340f
7 changed files with 111 additions and 22 deletions

View File

@@ -3,5 +3,5 @@ pub mod wrapper;
use crate::name::NameType;
pub trait MessageAction {
fn doc_name(&self) -> NameType;
fn doc_name(&self) -> &NameType;
}