We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259593f commit a14053fCopy full SHA for a14053f
proto/viam/module/v1/module.proto
@@ -21,8 +21,8 @@ service ModuleService {
21
// Ready determines if the server is started and ready to recieve resource configurations.
22
rpc Ready(ReadyRequest) returns (ReadyResponse);
23
24
- // ValidateConfig determines whether the given config is valid and registers/returns implicit
25
- // dependencies.
+ // ValidateConfig determines whether the given config is valid and registers/returns
+ // both required and optional implicit dependencies.
26
rpc ValidateConfig(ValidateConfigRequest) returns (ValidateConfigResponse);
27
}
28
@@ -68,4 +68,5 @@ message ValidateConfigRequest {
68
69
message ValidateConfigResponse {
70
repeated string dependencies = 1;
71
+ repeated string optional_dependencies = 2;
72
0 commit comments