cufflink-cli 0.8.35

CLI for the Cufflink CRUD microservice platform — deploy, init, and manage services
1
2
3
4
5
6
7
pub async fn run(_env: Option<&str>) -> eyre::Result<()> {
    // TODO: Implement log streaming from the platform
    // This will require a WebSocket or SSE endpoint on the platform
    println!("Log streaming not yet implemented.");
    println!("Use `docker-compose logs platform --tail 50 -f` for now.");
    Ok(())
}