app-cloudep-notification-se.../generate/protobuf/notification.proto

22 lines
289 B
Protocol Buffer
Raw Normal View History

2024-08-20 06:12:13 +00:00
syntax = "proto3";
package "app-cloudep-notification-service";
option go_package="./app-cloudep-notification-service";
// OKResp
message OKResp {}
// NoneReq
message NoneReq {}
// DemoService ...
service NotificationService {
// Ping ...
rpc Ping(OKResp)returns(NoneReq);
}