15 lines
299 B
Protocol Buffer
15 lines
299 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package email;
|
|
option go_package = "github.com/letsencrypt/boulder/email/proto";
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
service Exporter {
|
|
rpc SendContacts (SendContactsRequest) returns (google.protobuf.Empty);
|
|
}
|
|
|
|
message SendContactsRequest {
|
|
repeated string emails = 1;
|
|
}
|