modo-rs 0.8.0

Rust web framework for small monolithic apps
Documentation
1
2
3
4
5
6
7
8
use super::client::RemoteBackend;
use super::memory::MemoryBackend;

pub(crate) enum BackendKind {
    Remote(Box<RemoteBackend>),
    #[cfg_attr(not(any(test, feature = "test-helpers")), allow(dead_code))]
    Memory(MemoryBackend),
}