newton_cli/lib.rs
1/// Cli module
2pub mod cli;
3
4/// Commands module
5pub mod commands;
6
7/// Config module
8pub mod config;
9
10/// Dotenv module for CLI-specific environment variable loading
11pub mod dotenv;
12
13/// Local type definitions for RPC communication
14pub mod types;
15
16/// Hardcoded `taskGenerator[0]` addresses for attester resolution
17pub mod task_generator;