mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
15 lines
340 B
Protocol Buffer
15 lines
340 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cline;
|
|
option java_package = "bot.cline.proto";
|
|
option java_multiple_files = true;
|
|
|
|
import "common.proto";
|
|
|
|
// SlashService provides methods for managing slash
|
|
service SlashService {
|
|
// Sends button click message
|
|
rpc reportBug(StringRequest) returns (Empty);
|
|
rpc condense(StringRequest) returns (Empty);
|
|
}
|