sloop-daemon 0.1.0

A small daemon that schedules coding agents
Documentation
1
2
3
4
5
6
7
8
use std::io;
use std::process::ExitCode;

fn main() -> ExitCode {
    let mut stdout = io::stdout().lock();
    let mut stderr = io::stderr().lock();
    sloop::cli::run(std::env::args_os(), &mut stdout, &mut stderr)
}