mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-12 22:07:47 +02:00
11 lines
252 B
Protocol Buffer
11 lines
252 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "github.com/micro/go-micro/v2/api/proto/api.proto";
|
|
|
|
service Form {
|
|
// regular form
|
|
rpc Submit(go.api.Request) returns (go.api.Response) {};
|
|
// multipart form
|
|
rpc Multipart(go.api.Request) returns (go.api.Response) {};
|
|
}
|