errand-bot 0.1.0

Run a coding agent from a chat channel, in a sandbox it cannot escape.
1
2
3
4
5
6
7
8
9
//! The web interface: which addresses it may bind to, what it serves, and how
//! a connected browser becomes another view of a session.

/// Which addresses the interface may bind to.
pub mod address;
/// The routes the interface serves.
pub mod server;
/// A connected browser as another view of a session.
pub mod view;