fresh-editor 0.1.74

A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Filesystem abstraction layer for async, pluggable file system access
//
// This module provides a clean abstraction over filesystem operations,
// designed to work efficiently with both local and network filesystems.

pub mod backend;
pub mod local;
pub mod manager;
pub mod slow;

pub use backend::{FsBackend, FsEntry, FsEntryType, FsMetadata};
pub use local::LocalFsBackend;
pub use manager::FsManager;
pub use slow::{BackendMetrics, SlowFsBackend, SlowFsConfig};