Compiles again after command subsystem

terrified to start testing
This commit is contained in:
2026-03-27 23:50:58 +01:00
parent 09cfcb1839
commit 0909524dee
75 changed files with 1165 additions and 609 deletions

View File

@@ -7,10 +7,9 @@ use futures::future::LocalBoxFuture;
use hashbrown::HashMap;
use orchid_base::{LogWriter, Logger, is};
use crate::api;
use crate::entrypoint::notify;
use crate::{api, notify};
pub struct LogWriterImpl {
pub(crate) struct LogWriterImpl {
category: String,
strat: api::LogStrategy,
}
@@ -33,7 +32,7 @@ impl LogWriter for LogWriterImpl {
}
#[derive(Clone)]
pub struct LoggerImpl {
pub(crate) struct LoggerImpl {
default: Option<api::LogStrategy>,
routing: HashMap<String, api::LogStrategy>,
}