use std::fmt::Debug;
use super::filesystem::dispatch::FileSystemDispatch;
use super::time::RuntimeInstant;
pub trait SystemRuntime: Debug + Sync + Send + Clone + 'static {
type Instant: RuntimeInstant;
fn filesystem_dispatch(&self) -> &FileSystemDispatch;
}