cline/proto/account.proto
Sarah Fortune 60c210b017
Add java options to protobufs (#3141)
Set the java class path.
2025-04-27 09:25:37 -10:00

16 lines
465 B
Protocol Buffer

syntax = "proto3";
package cline;
option java_package = "bot.cline.proto";
option java_multiple_files = true;
import "common.proto";
// Service for account-related operations
service AccountService {
// Handles the user clicking the login link in the UI.
// Generates a secure nonce for state validation, stores it in secrets,
// and opens the authentication URL in the external browser.
rpc accountLoginClicked(EmptyRequest) returns (String);
}