All checks were successful
Build and Push Image / build-and-push (push) Successful in 5m24s
17 lines
522 B
Protocol Buffer
17 lines
522 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
option csharp_namespace = "Aoba.RPC";
|
|
package aoba;
|
|
import "Proto/Types.proto";
|
|
|
|
service AobaRpc {
|
|
rpc GetMedia (Id) returns (MediaResponse);
|
|
rpc DeleteMedia (Id) returns (google.protobuf.Empty);
|
|
rpc UpdateMedia (google.protobuf.Empty) returns (google.protobuf.Empty);
|
|
rpc ListMedia(PageFilter) returns (ListResponse);
|
|
rpc GetUser(Id) returns (UserResponse);
|
|
rpc GetShareXDestination(google.protobuf.Empty) returns (ShareXResponse);
|
|
}
|
|
|