edda 0.2.1

Decision memory for coding agents — CLI and TUI
1
2
3
4
5
6
7
8
9
10
11
use std::path::Path;

use edda_serve::ServeConfig;

pub fn execute(repo_root: &Path, bind: &str, port: u16) -> anyhow::Result<()> {
    let config = ServeConfig {
        bind: bind.to_string(),
        port,
    };
    tokio::runtime::Runtime::new()?.block_on(edda_serve::serve(repo_root, config))
}