dx-forge 0.1.3

Production-ready VCS and orchestration engine for DX tools with Git-like versioning, dual-watcher architecture, traffic branch system, and component injection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod api;
pub mod lsp;
pub mod semantic_analyzer;
pub mod authentication;


use anyhow::Result;
use std::path::PathBuf;

pub async fn start(port: u16, path: PathBuf) -> Result<()> {
    api::serve(port, path).await
}