Skip to content

Commit 1982a13

Browse files
Add online help field to rpc platform
1 parent f850706 commit 1982a13

File tree

2 files changed

+122
-33
lines changed

2 files changed

+122
-33
lines changed

rpc/cc/arduino/cli/commands/v1/common.pb.go

+113-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/cc/arduino/cli/commands/v1/common.proto

+9
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ message Platform {
9999
bool deprecated = 10;
100100
// Type of the platform.
101101
repeated string type = 11;
102+
// A URL provided by the author of the platform's package, intended to point
103+
// to their online help service.
104+
HelpResources help = 12;
102105
}
103106

104107
message InstalledPlatformReference {
@@ -126,3 +129,9 @@ message Profile {
126129
// FQBN specified in the profile.
127130
string fqbn = 2;
128131
}
132+
133+
message HelpResources {
134+
// A URL provided by the author of the platform's package, intended to point
135+
// to their online help service.
136+
string online = 1;
137+
}

0 commit comments

Comments
 (0)