Moved include and path to data.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2025-12-28 15:46:50 -05:00
parent 0bbcf7a1d7
commit 9e88f84166
5 changed files with 140 additions and 63 deletions

View File

@@ -1,15 +1,14 @@
use super::MTTError;
use crate::{
data_director::{Include, Path},
name::{Name, NameType, Names},
router::{Include, Path, Queue},
router::Queue,
};
use chrono::prelude::*;
use std::{
collections::{HashMap, HashSet},
ops::{Add, AddAssign},
sync::{
mpsc::{channel, Receiver},
},
sync::mpsc::{channel, Receiver},
thread::{sleep, spawn},
time::Duration,
};
@@ -3691,7 +3690,7 @@ pub struct Records {
}
impl Records {
fn new(names: Names) -> Self {
pub fn new(names: Names) -> Self {
Self {
names: names,
data: InternalRecords::new(),