Skip to content

Commit a14053f

Browse files
committed
intial api
1 parent 259593f commit a14053f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

proto/viam/module/v1/module.proto

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ service ModuleService {
2121
// Ready determines if the server is started and ready to recieve resource configurations.
2222
rpc Ready(ReadyRequest) returns (ReadyResponse);
2323

24-
// ValidateConfig determines whether the given config is valid and registers/returns implicit
25-
// dependencies.
24+
// ValidateConfig determines whether the given config is valid and registers/returns
25+
// both required and optional implicit dependencies.
2626
rpc ValidateConfig(ValidateConfigRequest) returns (ValidateConfigResponse);
2727
}
2828

@@ -68,4 +68,5 @@ message ValidateConfigRequest {
6868

6969
message ValidateConfigResponse {
7070
repeated string dependencies = 1;
71+
repeated string optional_dependencies = 2;
7172
}

0 commit comments

Comments
 (0)