12 lines
242 B
Protocol Buffer
12 lines
242 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "AZKiServer.RPC";
|
|
package azki;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "Protos/types.proto";
|
|
|
|
|
|
service AZKi{
|
|
rpc GetMediaEntriesInRange(MediaRangeRequest) returns (MediaList);
|
|
} |