blob: 9d235169713d8ad91185fb7dfc56f708b3ceb0cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
syntax = "proto3";
package within.website.x.mimi.announce;
option go_package = "within.website/x/buf/mimi/announce";
import "google/protobuf/empty.proto";
import "external/jsonfeed/jsonfeed.proto";
service Announce {
rpc Announce(jsonfeed.Item) returns (google.protobuf.Empty) {}
}
|