Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
fix(sdk): fixed fmt errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kjuulh committed Feb 19, 2023
1 parent 6e5f407 commit 10bc6f3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions crates/dagger-sdk/src/gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pub struct SecretId(String);
pub struct SocketId(String);
#[derive(Serialize, Deserialize)]
pub struct BuildArg {
pub name: String,
pub value: String,
pub name: String,
}
pub struct CacheVolume {
pub proc: Arc<Child>,
Expand Down Expand Up @@ -67,7 +67,10 @@ pub struct ContainerPublishOpts {
pub struct ContainerWithDefaultArgsOpts {
pub args: Option<Vec<String>>,
}
pub struct ContainerWithDirectoryOpts {}
pub struct ContainerWithDirectoryOpts {
pub exclude: Option<Vec<String>>,
pub include: Option<Vec<String>>,
}
pub struct ContainerWithExecOpts {
pub stdin: Option<String>,
pub redirect_stdout: Option<String>,
Expand Down Expand Up @@ -1459,7 +1462,6 @@ impl Socket {
query.execute(&graphql_client(&self.conn)).unwrap().unwrap()
}
}

#[derive(Serialize)]
pub enum CacheSharingMode {
SHARED,
Expand Down

0 comments on commit 10bc6f3

Please sign in to comment.