mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
17 lines
255 B
Protocol Buffer
17 lines
255 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package vehicle;
|
|
|
|
option go_package = "./proto;vehicle";
|
|
|
|
service VehicleAdmin {
|
|
rpc SetLogo(SetLogoRequest) returns (SetLogoResponse) {}
|
|
}
|
|
|
|
message SetLogoRequest {
|
|
string make = 1;
|
|
string url = 2;
|
|
}
|
|
|
|
message SetLogoResponse {}
|