Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Global Config and Generic Backend Loading from toml #5

Merged
merged 8 commits into from
Sep 5, 2024
Prev Previous commit
Next Next commit
Add docs to missing field
  • Loading branch information
BradenEverson authored and claymcleod committed Sep 5, 2024
commit 4b0b44351d2b07ab38e208ce59697547e0094797
1 change: 1 addition & 0 deletions src/engine/service/runner/backend/backend_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ pub enum BackendType {
/// Extra attributes for Generic Backends
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GenericBackendConfig {
/// The script command that will be run on submit
command: String,
}

Expand Down