| 231 | } |
| 232 | |
| 233 | pub trait CliConfig { |
| 234 | fn apply_shared(&self, _shared: &mut SharedArgs) {} |
| 235 | |
| 236 | fn apply_daily_args(&self, _args: &mut DailyArgs) {} |
| 237 | |
| 238 | fn apply_weekly_args(&self, _args: &mut WeeklyArgs) {} |
| 239 | |
| 240 | fn apply_blocks_args(&self, _args: &mut BlocksArgs) {} |
| 241 | |
| 242 | fn apply_statusline_args(&self, _args: &mut StatuslineArgs) {} |
| 243 | |
| 244 | fn apply_agent_args( |
| 245 | &self, |
| 246 | _codex_speed: &mut CodexSpeed, |
| 247 | _pi_path: Option<&mut Option<String>>, |
| 248 | _open_claw_path: Option<&mut Option<String>>, |
| 249 | ) { |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | pub struct NoConfig; |
| 254 |
no outgoing calls
no test coverage detected