k2db-api-server 0.1.1

Single-binary Rust server for the k2db API
// SPDX-FileCopyrightText: 2026 Alexander R. Croft
// SPDX-License-Identifier: MIT

mod api_error;
mod app;
mod auth;
mod bootstrap;
mod cli;
mod config;
mod control_plane;
mod manager;
mod telemetry;

use clap::Parser;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let command = cli::Cli::parse();
    app::run(command).await
}