Add logos to vehicle API (#380)

This commit is contained in:
Dominic Wong
2022-02-16 21:41:48 +00:00
committed by GitHub
parent fec86cfd2f
commit 718466a4a1
7 changed files with 391 additions and 11 deletions

16
vehicle/proto/admin.proto Normal file
View File

@@ -0,0 +1,16 @@
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 {}