wimux-server 0.1.0

Daemon for wimux: owns the sessions, drives ConPTY children, emulates the terminals and serves clients over a named pipe.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT
// Copyright (c) 2026 Fabrice Andy
//! Bibliothèque du démon `wimux-server`. Le binaire (`main.rs`) s'appuie dessus,
//! et les tests d'intégration l'exercent directement.

pub mod batch;
pub mod browser;
pub mod commands;
pub mod config;
pub mod daemon;
pub mod git;
pub mod pane;
pub mod pty;
pub mod session;
pub mod webpane;
pub mod window;
pub mod worktree;