//! Local mode operations module //! //! Provides implementations for CLI commands when running in local mode (SQLite). //! These functions are called by the command routers in `src/commands/` when //! `Context.isLocal()` returns true. //! //! ## Usage //! //! ```zig //! const local = @import("../local.zig"); //! //! if (ctx.isLocal()) { //! return try local.experiment.create(ctx.allocator, name, artifact_path, json); //! } //! ``` //! //! ## Module Structure //! //! - `experiment_ops.zig` - Experiment CRUD operations for SQLite //! - Future: `run_ops.zig`, `metrics_ops.zig`, etc. pub const experiment = @import("local/experiment_ops.zig");