11 lines
172 B
Rust
11 lines
172 B
Rust
use bon::Builder;
|
|
|
|
use crate::Client;
|
|
|
|
#[readonly::make]
|
|
#[derive(Builder)]
|
|
pub struct Context {
|
|
pub client: Client,
|
|
pub dry_run: bool,
|
|
pub no_confirm: bool,
|
|
}
|