mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00

* migrate didShowAnnouncement * changeset * remove comment * make variable public --------- Co-authored-by: Elephant Lumps <celestial_vault@Elephants-MacBook-Pro.local>
17 lines
504 B
Protocol Buffer
17 lines
504 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cline;
|
|
option java_package = "bot.cline.proto";
|
|
option java_multiple_files = true;
|
|
|
|
import "common.proto";
|
|
|
|
// UiService provides methods for managing UI interactions
|
|
service UiService {
|
|
// Scrolls to a specific settings section in the settings view
|
|
rpc scrollToSettings(StringRequest) returns (Empty);
|
|
|
|
// Marks the current announcement as shown and returns whether an announcement should still be shown
|
|
rpc onDidShowAnnouncement(EmptyRequest) returns (Boolean);
|
|
}
|