about summary refs log tree commit diff
path: root/tvix/nix-compat/src/nix_daemon/mod.rs
blob: af487aea37bb638e5194a1ef733f52187d105d2d (plain) (blame)
1
2
3
4
5
6
7
8
pub mod handler;
pub mod types;
pub mod worker_protocol;

/// Represents all possible operations over the nix-daemon protocol.
pub trait NixDaemonIO {
    // TODO add methods to it.
}