Skip to content

Commit

Permalink
Add deps DS types to proto
Browse files Browse the repository at this point in the history
This commit adds the deps data source types to the minder proto
definitions.

Signed-off-by: Adolfo García Veytia (Puerco) <puerco@stacklok.com>
  • Loading branch information
puerco committed Nov 29, 2024
1 parent 76bb3a6 commit 87ef7f1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion proto/minder/v1/minder.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3820,9 +3820,20 @@ message DataSource {
oneof driver {
// rest is the REST data source driver.
RestDataSource rest = 6;

// deps is the dependencies extractor data source driver.
DepsDataSource deps = 7;
}
}

// DepsDataSource is the dependency data source driver
message DepsDataSource {
message Def {
}

map<string, Def> def = 1;
}

// RestDataSource is the REST data source driver.
message RestDataSource {
message Def {
Expand Down Expand Up @@ -3924,4 +3935,4 @@ message DataSourceReference {
max_len: 200,
}
];
}
}

0 comments on commit 87ef7f1

Please sign in to comment.