mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
bb84ab654a
* fix: allow extraConfig for agGrid to set onGridReady * depmap * depmap * depmap * depmap
9 lines
225 B
Rust
9 lines
225 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub struct WorkspaceGitRepo {
|
|
pub script_path: String,
|
|
pub git_repo_resource_path: String,
|
|
pub use_individual_branch: Option<bool>,
|
|
}
|