mirror of
https://github.com/go-micro/go-micro.git
synced 2025-05-19 21:23:04 +02:00
10 lines
187 B
Protocol Buffer
10 lines
187 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package go.micro.api.template;
|
|
|
|
import "github.com/micro/go-micro/v2/api/proto/api.proto";
|
|
|
|
service Example {
|
|
rpc Call(go.api.Request) returns (go.api.Response) {}
|
|
}
|